# file : tests/test/script/integration/testscript # copyright : Copyright (c) 2014-2019 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file # Note: using common.testscript from test/, not script/. # .include ../../common.testscript : script-files : { +touch testscript foo.testscript bar.testscript : testscript-and-other : $* <>/EOE != 0 ./: ../testscript testscript{../foo} EOI error: both 'testscript' and other names specified for dir{./} EOE : other-and-testscript : $* <>/EOE != 0 ./: testscript{../foo} ../testscript EOI error: both 'testscript' and other names specified for dir{./} EOE : others : $* <>~%EOE% != 0 ./: testscript{foo} EOI %error: working directory test[/\\] is a file/symlink% EOE : wd-exists-before : touch foo.testscript; mkdir --no-cleanup test; touch --no-cleanup test/.buildignore; $* <>/EOE ./: testscript{foo} EOI warning: working directory test/ exists at the beginning of the test EOE : wd-not-empty-before : touch foo.testscript; mkdir --no-cleanup test; touch --no-cleanup test/.buildignore; touch --no-cleanup test/dummy; $* <>/EOE ./: testscript{foo} EOI warning: working directory test/ exists and is not empty at the beginning of the test EOE : wd-not-empty-after : : The idea here is to run a nested testscript that creates (but does not : clean up) a file in our working directory. Note that an implicit cleanup : cancelation is not required as the file is out of the test root directory : scope. Also note that we still have to remove everything after detecting the : failure. : cat <=foo.testscript; touch ../../dummy EOI $* <>/EOE &test/*** != 0 ./: testscript{foo} EOI error: working directory test/ is not empty at the end of the test EOE