diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-03-14 00:53:12 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-03-17 14:41:09 +0300 |
commit | ff5c508e1678e2e8a02544cd71c5560bb59f313c (patch) | |
tree | 7f5eef2d586e6841df52a05738889f8e7e35ba05 /tests/cc | |
parent | bab021a6203127f38fb89c61cc41deb3e0abbe62 (diff) |
Adapt testscripts to ln builtin target path completion fix
Diffstat (limited to 'tests/cc')
-rw-r--r-- | tests/cc/modules/modules.testscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cc/modules/modules.testscript b/tests/cc/modules/modules.testscript index b603871..a43cc57 100644 --- a/tests/cc/modules/modules.testscript +++ b/tests/cc/modules/modules.testscript @@ -109,7 +109,7 @@ $* test clean <<EOI : Test subdirectory. : mkdir foo; - ln -s ../../core.mxx foo/core.mxx; + ln -s ../../../core.mxx foo/core.mxx; ln -s ../core.mxx ../../core.cxx ../../driver.cxx ./; $* test clean <'exe{test}: cxx{driver core} mxx{core} foo/mxx{core}' @@ -136,7 +136,7 @@ $* test clean <<EOI : Secondary score: sub/core.mxx vs ext-core.mxx (stronger separator). : mkdir sub; - ln -s ../../core.mxx ../../core.cxx sub/; + ln -s ../../../core.mxx ../../../core.cxx sub/; ln -s ../ext-core.mxx ../../driver.cxx ./; $* test clean <'exe{test}: cxx{driver} mxx{ext-core} sub/{mxx cxx}{core}' |