From 219080cf6ed195cf23a823d0b775f713d68f0b2d Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 10 Nov 2009 18:06:01 +1000 Subject: Help run all tests. --- tests/auto/declarative/runall.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 tests/auto/declarative/runall.sh diff --git a/tests/auto/declarative/runall.sh b/tests/auto/declarative/runall.sh new file mode 100755 index 0000000..b58c82b --- /dev/null +++ b/tests/auto/declarative/runall.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +Xnest :7 2>/dev/null & +trap "kill $!" EXIT +export DISPLAY=:7 + +make install 2>&1 | + while read line + do + case "$line" in + [a-z]*) ;; + PASS*) ;; + QDEBUG*) ;; + Makefile*) ;; + Config*) ;; + Totals*) ;; + \**) ;; + ./*) ;; + *) echo "$line" + esac + done + -- cgit v0.12 -data/cgit.png' alt='cgit logo'/> index : Qt.git
Qt s a cross-platform application framework that is used for developing application software that can be run on various software and hardware platforms with little or no change in the underlying codebase, while still being a native application with native capabilities and speed.
summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp
blob: f81611c3067bb1187b89d824ebef7e8a39c7fbc9 (plain)
1
2
3
4
5
6
7
8
9
//! [0]
    QScriptEngine engine;
    QScriptEngineDebugger debugger;
    debugger.attachTo(&engine);
//! [0]

//! [1]
    engine.evaluate("debugger");
//! [1]