summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-08-15 15:09:16 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-08-15 15:09:16 +0200
commite78ef8665dbf82d77e958f37204bce6e36bfcb59 (patch)
tree82b68a064ead4a340d75f72e8343218b7a4d27a3 /tests
parentb1aafd32c2e8eaa636eb13398219f225f480e788 (diff)
downloadbdep-e78ef8665dbf82d77e958f37204bce6e36bfcb59.tar.gz
bdep-e78ef8665dbf82d77e958f37204bce6e36bfcb59.tar.xz
bdep-e78ef8665dbf82d77e958f37204bce6e36bfcb59.zip
Use sanitized name stem for language identifiers in bdep-new
Diffstat (limited to 'tests')
-rw-r--r--tests/new.test18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/new.test b/tests/new.test
index 3a62df3..491c155 100644
--- a/tests/new.test
+++ b/tests/new.test
@@ -21,25 +21,25 @@ status += -d prj
: exe
{
- $* --no-amalgamation -t exe -l c++ prj 2>>/"EOE" &prj/***;
- created new executable project prj in $~/prj/
+ $* --no-amalgamation -t exe -l c++ prj-foo 2>>/"EOE" &prj-foo/***;
+ created new executable project prj-foo in $~/prj-foo/
EOE
- $build prj/ $cxx 2>>/EOE
- c++ prj/prj/cxx{prj}
- ld prj/prj/exe{prj}
+ $build prj-foo/ $cxx 2>>/EOE
+ c++ prj-foo/prj-foo/cxx{prj-foo}
+ ld prj-foo/prj-foo/exe{prj-foo}
EOE
}
: lib
{
- $* --no-amalgamation -t lib -l c++ libprj 2>>/"EOE" &libprj/***;
- created new library project libprj in $~/libprj/
+ $* --no-amalgamation -t lib -l c++ libprj-foo 2>>/"EOE" &libprj-foo/***;
+ created new library project libprj-foo in $~/libprj-foo/
EOE
- $build libprj/ $cxx 2>>/~%EOE%
+ $build libprj-foo/ $cxx 2>>/~%EOE%
%.{4}
- %ld libprj/.+%{3}
+ %ld libprj-foo/.+%{3}
EOE
}