mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-05-19 14:27:52 -04: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
|