diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-11-07 14:10:13 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-11-07 14:10:13 +0300 |
commit | da867fdf395454423c60c07660f588b02964cbec (patch) | |
tree | 9a5289b07a34ae7a98d490fed1c9b455f168042c | |
parent | 0a375145da44c64b063961369492d5bcb0d37671 (diff) |
Fix bdep-new tests failing for C projects
-rw-r--r-- | tests/new.testscript | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/new.testscript b/tests/new.testscript index dcb93ea..35c9b91 100644 --- a/tests/new.testscript +++ b/tests/new.testscript @@ -598,7 +598,7 @@ status += -d prj %.+ EOO - $build prj/ $config_cxx 2>>~%EOE% + $build prj/ $config_c 2>>~%EOE% %(c|ar|ld) .+%{5} EOE } @@ -613,7 +613,7 @@ status += -d prj test -f libprj/buildfile; test -f libprj/libprj/version.h.in == 1; - $build libprj/ $config_cxx 2>>~%EOE% + $build libprj/ $config_c 2>>~%EOE% %(c|ar|ld) .+%{6} EOE } @@ -628,7 +628,7 @@ status += -d prj test -f libprj/build2file; test -d libprj/libprj == 1; - $build libprj/ $config_cxx 2>>~%EOE% + $build libprj/ $config_c 2>>~%EOE% %info: .+ is up to date% EOE } @@ -672,7 +672,7 @@ status += -d prj test -f libprj/libprj/prj.h; test -f libprj/libprj/prj.c; - $build libprj/ $config_cxx 2>>~%EOE% + $build libprj/ $config_c 2>>~%EOE% %(c|ar|ld) .+%{6} EOE } |