diff options
author | hershey <hershey@noemail.net> | 1998-08-12 15:34:51 (GMT) |
---|---|---|
committer | hershey <hershey@noemail.net> | 1998-08-12 15:34:51 (GMT) |
commit | 050751ce8da27000c7cb1ddad48e43c3c2d2d5ed (patch) | |
tree | 5369d6608f3609b5af3066c9c86a4fb612f6bea6 | |
parent | 20dc68ad30860c6b0b65354d41bda47c30a02824 (diff) | |
download | tk-050751ce8da27000c7cb1ddad48e43c3c2d2d5ed.zip tk-050751ce8da27000c7cb1ddad48e43c3c2d2d5ed.tar.gz tk-050751ce8da27000c7cb1ddad48e43c3c2d2d5ed.tar.bz2 |
returns if testcbind is not defined
FossilOrigin-Name: 0466c2e2ed8c4c7941690f16e65c5673e5a5b0b1
-rw-r--r-- | tests/bind.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bind.test b/tests/bind.test index 18de465..f03a95d 100644 --- a/tests/bind.test +++ b/tests/bind.test @@ -216,6 +216,12 @@ test bind-5.1 {Tk_CreateBindingTable procedure} { } {} +if {[string compare testcbind [info commands testcbind]] != 0} { + puts "This application hasn't been compiled with the testcbind command," + puts "therefore I am skipping all of these tests." + return +} + test bind-6.1 {Tk_DeleteBindTable procedure} { catch {destroy .b.c} canvas .b.c |