Procházet zdrojové kódy

test starting all examples

Falko Schindler před 2 roky
rodič
revize
b3bdbf1082
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. 4 1
      test_startup.sh

+ 4 - 1
test_startup.sh

@@ -30,5 +30,8 @@ check() {
 error=0
 check main.py || error=1
 check examples.py || error=1
-check examples/slideshow/main.py || error=1
+for path in examples/*
+do
+    check $path/main.py || error=1
+done
 test $error -eq 0