diff options
author | tv <tv@pkgsrc.org> | 2001-05-30 04:17:52 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2001-05-30 04:17:52 +0000 |
commit | beb5a2646db498950b470370e95b68072e09e970 (patch) | |
tree | 54d827e3f9f37baaa03504832fab9a5eae58bbc5 /devel/dejagnu/patches | |
parent | 2f1c6a26fc03eb0013d42912b7929f1f87f8d9e7 (diff) | |
download | pkgsrc-beb5a2646db498950b470370e95b68072e09e970.tar.gz |
DejaGnu is a framework for testing other programs. Its purpose is to
provide a single front end for all tests. Beyond this, DejaGnu offers
several advantages for testing:
- The flexibility and consistency of the DejaGnu framework
make it easy to write tests for any program.
- DejaGnu provides a layer of abstraction which makes all
tests (if correctly written) portable to any host or target
where a program must be tested. For instance, a test for
GDB can run (from any Unix based host) on any target
architecture supported by DejaGnu. Currently DejaGnu runs
tests on several single board computers, whose operating
software ranges from just a boot monitor to a full-fledged,
Unix-like realtime OS.
- DejaGnu is written in expect, which in turn uses Tcl
(Tool command language). The framework comprises two parts:
the testing framework and the testsuites themselves. Tests
are usually written in expect using Tcl.
Diffstat (limited to 'devel/dejagnu/patches')
-rw-r--r-- | devel/dejagnu/patches/patch-aa | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/devel/dejagnu/patches/patch-aa b/devel/dejagnu/patches/patch-aa new file mode 100644 index 00000000000..d3b5e78a959 --- /dev/null +++ b/devel/dejagnu/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1.1.1 2001/05/30 04:17:52 tv Exp $ + +--- lib/target.exp.orig Wed May 30 00:04:44 2001 ++++ lib/target.exp Wed May 30 00:04:52 2001 +@@ -272,8 +272,7 @@ + regsub -all "(^|\n)\[^\n\]*: In function\[^\n\]*\n\[^\n\]\[^\n\]*is not implemented and will always fail\[^\n\]*" $text "" text + + # Cygwin cc1 warns about -fpic and -fPIC +- regsub -all ".*: warning: -f(pic|PIC) ignored for target .*" $text "" +-text ++ regsub -all ".*: warning: -f(pic|PIC) ignored for target .*" $text "" text + + # It might be tempting to get carried away and delete blank lines, etc. + # Just delete *exactly* what we're ask to, and that's it. |