We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6974806 commit a0d6b5dCopy full SHA for a0d6b5d
.gitignore
@@ -1,4 +1,5 @@
1
compile_commands.json
2
linc/linc
3
-linc/logs
+linc.log
4
out-root.build
5
+
linc/linc.testscript
@@ -8,14 +8,14 @@
8
: will be expanded, and not taken literally.
9
: The != 0 means test will fail if return code is 0
10
: The $0 will expand to the executable name
11
-$* 2>>"EOE" != 0
+$* &linc.log 2>>"EOE" != 0
12
Usage:
13
$0 <3d-model> <params> [layer-height \(mm\)]
14
EOE
15
16
: Non-existent-file
17
: Checks behviour when file doesn't exist
18
-$* 'nonfile' 'params' 2>>EOE != 0
+$* 'nonfile' 'params' &linc.log 2>>EOE != 0
19
Failed to load nonfile
20
21
0 commit comments