Browse Source

typo pour le répertoire de test

nas 3 years ago
parent
commit
bac3f75665
1 changed files with 11 additions and 0 deletions
  1. 11
    0
      test/tests.sh

+ 11
- 0
test/tests.sh View File

@@ -1,4 +1,15 @@
1 1
 #!/bin/sh
2 2
 
3
+echo "\nLaunching every tests"
4
+echo "‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾\n"
5
+echo "Starting server"
6
+echo "‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾"
7
+cd ..
8
+php -S 192.168.1.152:8080 &
9
+server=$!
10
+cd test
3 11
 sh login.sh
4 12
 find . -iname "*_*.sh" -type f -exec sh {} \;
13
+echo "Stoping server"
14
+echo "‾‾‾‾‾‾‾‾‾‾‾‾‾‾"
15
+kill $server

Loading…
Cancel
Save