mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 02:33:27 +02:00
Initial support for a directory with test scripts
This way there's no need to rebuild the test every time. Script dir is symlinked from the source into the binary dir.
This commit is contained in:
parent
be3d1713a8
commit
e1c22b5c7c
5 changed files with 36 additions and 4 deletions
|
@ -12,6 +12,8 @@ else()
|
|||
cmake_minimum_required(VERSION 3.2)
|
||||
endif()
|
||||
|
||||
# 3.14 is the minimum version that supports symlinks on Windows
|
||||
cmake_minimum_required(VERSION 3.14)
|
||||
|
||||
# Passing of variables to vcpkg
|
||||
#
|
||||
|
|
|
@ -5,6 +5,25 @@ macro (setup_testcase_dependencies)
|
|||
link_hifi_libraries(shared test-utils script-engine networking)
|
||||
|
||||
package_libraries_for_deployment()
|
||||
|
||||
|
||||
# The test system is a bit unusual in how it works, and generates targets on its own.
|
||||
# This macro will be called for each of them, so we want to add stuff only to the
|
||||
# right targets.
|
||||
if("${TARGET_NAME}" STREQUAL "script-engine-ScriptEngineTests")
|
||||
|
||||
# We're going with a symlink here for ease of development -- can change the test
|
||||
# without recompiling. We probably never are going to package the tests, or use
|
||||
# them outside of development.
|
||||
#
|
||||
# Symlinks should also work fine on Windows. They're a supported feature, though
|
||||
# a very rarely used one.
|
||||
add_custom_command(TARGET "${TARGET_NAME}" POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E create_symlink
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/src/tests"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/tests"
|
||||
)
|
||||
endif()
|
||||
endmacro ()
|
||||
|
||||
setup_hifi_testcase(Network)
|
||||
|
|
|
@ -76,10 +76,16 @@ void ScriptEngineTests::scriptTest() {
|
|||
QVERIFY(!ac.isNull());
|
||||
|
||||
|
||||
ac->loadOneScript("test1.js");
|
||||
//ac->loadOneScript("test-missing.js");
|
||||
//ac->loadOneScript("test-hello.js");
|
||||
//ac->loadOneScript("test-divide-by-zero.js");
|
||||
QDir testScriptsDir("tests");
|
||||
QStringList testScripts = testScriptsDir.entryList(QStringList() << "*.js", QDir::Files);
|
||||
testScripts.sort();
|
||||
|
||||
for(QString script : testScripts) {
|
||||
script = "tests/" + script;
|
||||
qInfo() << "Running test script: " << script;
|
||||
ac->loadOneScript(script);
|
||||
}
|
||||
|
||||
qDebug() << ac->getRunning();
|
||||
|
||||
|
||||
|
|
4
tests/script-engine/src/tests/001_test_print.js
Normal file
4
tests/script-engine/src/tests/001_test_print.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
var v = 1;
|
||||
for (v = 1; v < 30; v++){
|
||||
print(v);
|
||||
}
|
1
tests/script-engine/src/tests/002_console_log.js
Normal file
1
tests/script-engine/src/tests/002_console_log.js
Normal file
|
@ -0,0 +1 @@
|
|||
console.log("I'm testing!");
|
Loading…
Reference in a new issue