summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Chimento <philip.chimento@gmail.com>2018-08-03 01:05:54 +0000
committerPhilip Chimento <philip.chimento@gmail.com>2018-08-03 01:05:54 +0000
commit2a0834f338c9535494a87ad010ae3cc7d7d7930d (patch)
tree90111b670bf5177da55e0ff305c70ac7b322359d
parent4d663ace1e65dfbf50e42f16d69fc9fd5cd95590 (diff)
parent8f98f4af7f6f233c205f547ecb513e47813606d0 (diff)
downloadgjs-2a0834f338c9535494a87ad010ae3cc7d7d7930d.tar.gz
Merge branch 'more' into 'master'
CI: add webkit and gtk-app tests See merge request GNOME/gjs!222
-rwxr-xr-xinstalled-tests/scripts/testExamples.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/installed-tests/scripts/testExamples.sh b/installed-tests/scripts/testExamples.sh
index f258c8cf..d6bbc447 100755
--- a/installed-tests/scripts/testExamples.sh
+++ b/installed-tests/scripts/testExamples.sh
@@ -15,11 +15,19 @@ if [[ -n "${ENABLE_GTK}" ]]; then
eval timeout 5s $graphical_gjs examples/gtk.js
report_timeout "run the gtk.js example"
+ eval timeout 5s $graphical_gjs examples/gtk-application.js
+ report_timeout "run the gtk-application.js example"
+
eval timeout 5s $graphical_gjs examples/gettext.js
report_timeout "run the gettext.js example"
+
+ eval timeout 15s $graphical_gjs examples/webkit.js
+ report_timeout "run the webkit.js example"
else
skip "run the calc.js example" "running without GTK"
skip "run the gtk.js example" "running without GTK"
+ skip "run the gtk-application.js example" "running without GTK"
skip "run the gettext.js example" "running without GTK"
+ skip "run the webkit.js example" "running without GTK"
fi
echo "1..$total"