Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/testsuite/lib/checkoutput.exp')
-rw-r--r--newlib/testsuite/lib/checkoutput.exp40
1 files changed, 0 insertions, 40 deletions
diff --git a/newlib/testsuite/lib/checkoutput.exp b/newlib/testsuite/lib/checkoutput.exp
deleted file mode 100644
index 8cb46925f..000000000
--- a/newlib/testsuite/lib/checkoutput.exp
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved.
-#
-# Permission to use, copy, modify, and distribute this software
-# is freely granted, provided that this notice is preserved.
-#
-
-# newlib_check_output takes the basename of the test source file, and
-# a list of TCL regular expressions representing the expected output.
-# It assumes one line of output per test.
-
-proc newlib_check_output { srcfile expectlist } {
- global objdir subdir srcdir
-
- set srcfullname "$srcdir/$subdir/$srcfile"
- set test_driver "$objdir/testsuite/[file tail [file rootname $srcfullname].x]"
-
- set comp_output [newlib_target_compile "$srcfullname" "$test_driver" "executable" ""]
-
- if { $comp_output != "" } {
- fail "Failed to compile $srcfile.\n"
- return
- }
-
- set result [newlib_load $test_driver ""]
- set status [lindex $result 0]
- set output [lindex $result 1]
-
- set output_lines [split $output "\n"]
-
- foreach { expectedval } $expectlist {
- set gotval [string trim [lindex $output_lines 0] "\r"]
- if { ! [string match $expectedval $gotval] } {
- fail "$srcfile: Expected: $expectedval Got: $gotval "
- return
- }
- set output_lines [lrange $output_lines 1 end]
- }
-
- pass $srcfile
-}