mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-04 08:15:30 +08:00
qt 6.5.1 original
This commit is contained in:
@ -0,0 +1,49 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
#####################################################################
|
||||
## tst_qtextstream Test:
|
||||
#####################################################################
|
||||
|
||||
# Collect test data
|
||||
list(APPEND test_data "../rfc3261.txt")
|
||||
list(APPEND test_data "../task113817.txt")
|
||||
list(APPEND test_data "../qtextstream.qrc")
|
||||
list(APPEND test_data "../qtextstream_integrity.qrc")
|
||||
list(APPEND test_data "../tst_qtextstream.cpp")
|
||||
list(APPEND test_data "../resources")
|
||||
list(APPEND test_data "../BLACKLIST")
|
||||
|
||||
qt_internal_add_test(tst_qtextstream
|
||||
OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/../"
|
||||
SOURCES
|
||||
../tst_qtextstream.cpp
|
||||
LIBRARIES
|
||||
Qt::Network
|
||||
Qt::TestPrivate
|
||||
TESTDATA ${test_data}
|
||||
QT_TEST_SERVER_LIST "cyrus"
|
||||
)
|
||||
|
||||
if(QT_FEATURE_sanitize_address)
|
||||
set_property(TEST tst_qtextstream APPEND PROPERTY ENVIRONMENT "QTEST_FUNCTION_TIMEOUT=900000")
|
||||
endif()
|
||||
|
||||
# Resources:
|
||||
set(qtextstream_resource_files
|
||||
"../resources/big_endian/"
|
||||
"../resources/little_endian/"
|
||||
)
|
||||
|
||||
qt_internal_add_resource(tst_qtextstream "qtextstream"
|
||||
PREFIX
|
||||
"/tst_textstream/"
|
||||
BASE
|
||||
".."
|
||||
FILES
|
||||
${qtextstream_resource_files}
|
||||
)
|
||||
|
||||
if(QT_FEATURE_process)
|
||||
add_dependencies(tst_qtextstream stdinProcess readAllStdinProcess readLineStdinProcess)
|
||||
endif()
|
Reference in New Issue
Block a user