We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76a5690 commit c429ec1Copy full SHA for c429ec1
test.sh
@@ -1,6 +1,13 @@
1
-#!/bin/bash
+# !/bin/bash
2
3
-run()
+#
4
+# To ensure long term portability, Andvaranaut is to be compiled with all major C and C++ compilers.
5
6
+# To ensure the random number generator does not break world generation,
7
+# Andvaranaut is to be started and exited a number of times for each compilation.
8
9
+
10
+test()
11
{
12
for i in {0..25..1}
13
do
@@ -12,16 +19,16 @@ run()
19
20
main()
14
21
22
+ set -e
23
15
24
for i in 11 10 01 00
16
25
17
26
make -C src clean
18
27
28
make -j 10 -C src CLANG=${i:0:1} CPP=${i:1:2}
29
- run
30
+ test
31
done
32
}
33
-set -e
-
34
main
0 commit comments