aboutsummaryrefslogtreecommitdiff
path: root/Semestr 4/aisd/pracownia4/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Semestr 4/aisd/pracownia4/test.sh')
-rwxr-xr-xSemestr 4/aisd/pracownia4/test.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/Semestr 4/aisd/pracownia4/test.sh b/Semestr 4/aisd/pracownia4/test.sh
deleted file mode 100755
index dc725ad..0000000
--- a/Semestr 4/aisd/pracownia4/test.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-make brut
-make rozw3
-
-
-for i in {1..10000}
-do
- echo $i
- python3 gen.py $i $1 > test.in
- ./rozw3 < test.in > wa.out
- ./brut < test.in > test.out
-
- if diff -w test.out wa.out
- then
- echo ok
- else
- echo nieok
- break
- fi
-done