mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-01-02 12:39:18 -05:00
7 lines
127 B
Bash
Executable File
7 lines
127 B
Bash
Executable File
#!/bin/bash
|
|
f77 -o TestL12 TestL1.2.f || exit 1
|
|
./TestL12 || exit 1
|
|
diff validate.txt correct.txt || exit 1
|
|
echo "PASS"
|
|
exit 0
|