move test into subdir
Stefan Schuermans

Stefan Schuermans commited on 2020-05-17 18:18:03
Showing 2 changed files, with 17 additions and 16 deletions.

... ...
@@ -1,16 +1 @@
1
-add_test(
2
-  NAME
3
-  first
4
-  COMMAND
5
-  bash -c
6
-  "
7
-    > out.proto
8
-    (
9
-      export LWPTPL_OUTPUT=out.proto
10
-      export LD_PRELOAD=${CMAKE_BINARY_DIR}/liblwptpl/liblwptpl.so
11
-      /bin/true a b 'c d'
12
-      /bin/false e f 'g h'
13
-    )
14
-    ls -l out.proto
15
-  "
16
-)
1
+add_subdirectory(first)
... ...
@@ -0,0 +1,16 @@
1
+add_test(
2
+  NAME
3
+  first
4
+  COMMAND
5
+  bash -c
6
+  "
7
+    > out.proto
8
+    (
9
+      export LWPTPL_OUTPUT=out.proto
10
+      export LD_PRELOAD=${CMAKE_BINARY_DIR}/liblwptpl/liblwptpl.so
11
+      /bin/true a b 'c d'
12
+      /bin/false e f 'g h'
13
+    )
14
+    ls -l out.proto
15
+  "
16
+)
0 17