summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-09-11 23:53:41 +0000
committerTim Harder <radhermit@gentoo.org>2011-09-11 23:53:41 +0000
commitac78523dcdfc0cd346c17e0824511974a0cc4875 (patch)
tree835f83d9b7bfbba245146ca726675deca3846f55 /app-text/csvfix/files
parentRemove old. (diff)
downloadgentoo-2-ac78523dcdfc0cd346c17e0824511974a0cc4875.tar.gz
gentoo-2-ac78523dcdfc0cd346c17e0824511974a0cc4875.tar.bz2
gentoo-2-ac78523dcdfc0cd346c17e0824511974a0cc4875.zip
Remove old.
(Portage version: 2.2.0_alpha55/cvs/Linux x86_64)
Diffstat (limited to 'app-text/csvfix/files')
-rw-r--r--app-text/csvfix/files/csvfix-1.00c-tests.patch60
1 files changed, 0 insertions, 60 deletions
diff --git a/app-text/csvfix/files/csvfix-1.00c-tests.patch b/app-text/csvfix/files/csvfix-1.00c-tests.patch
deleted file mode 100644
index 0b89f9c17588..000000000000
--- a/app-text/csvfix/files/csvfix-1.00c-tests.patch
+++ /dev/null
@@ -1,60 +0,0 @@
---- csvfix-build.orig/csvfix/test/run1
-+++ csvfix-build/csvfix/test/run1
-@@ -1,4 +1,4 @@
--#!bash
-+#!/bin/bash
- # run1
- # run single test
- # copyright (C) 2008 Neil Butterworth
-@@ -49,7 +49,7 @@
- fi
-
- # exe to be tested - used in tests
--CSVED=../bin/csvfix.exe
-+CSVED=../bin/csvfix
- export CSVED
-
- if [ ! -f "$CSVED" ]
-@@ -64,7 +64,7 @@
- fi
-
- # where to find diff & where to put output
--DIFF=/bin/diff
-+DIFF=/usr/bin/diff
- DIFFOUT=tmp/_diffout
- WINDIFF="C:/Program Files/Microsoft Visual Studio/Common/Tools/WINDIFF.EXE"
- TEST=`basename $TEST`
-@@ -133,5 +133,7 @@
- fi
- else
- echo "Execution problem with $TEST - please correct"
-+ color_red "FAILED $TEST"
-+ exit 1
- fi
-
---- csvfix-build.orig/csvfix/test/runall
-+++ csvfix-build/csvfix/test/runall
-@@ -1,4 +1,4 @@
--#!bash
-+#!/bin/bash
- # runall.bash
- # run all tests and report
-
-@@ -9,7 +9,7 @@
- FAILS=0
- for TEST in tests/*.test
- do
-- TESTNAME=`basename $TEST`
-+ TESTNAME=`basename $TEST`
- if ./run1 $TESTNAME
- then
- let PASSES=PASSES+1
-@@ -22,3 +22,8 @@
- echo $FAILS failed, $PASSES passed
- echo ""
-
-+if [[ $FAILS -gt 0 ]]; then
-+ exit 1
-+else
-+ exit 0
-+fi