summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Z. Yang <ezyang@cs.stanford.edu>2014-05-29 17:07:06 -0700
committerEdward Z. Yang <ezyang@cs.stanford.edu>2014-05-29 18:33:59 -0700
commit6c5017a8ca2df6c20eef7edf9caeeece26f06cac (patch)
tree5827d478bf9534005be1e65300658db1d1725445
parentdcc6e04f00ded0c025f86e5d7555d599b1f77f71 (diff)
downloadhaskell-6c5017a8ca2df6c20eef7edf9caeeece26f06cac.tar.gz
Add .gitignore for autogenerated test files.
I used this shell command to automatically generate the lists: for i in `git ls-files -o --exclude-standard --directory`; do echo "`basename $i`" >> "`dirname "$i"`/.gitignore"; done Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
-rw-r--r--libraries/base/tests/.gitignore93
-rw-r--r--libraries/base/tests/Concurrent/.gitignore5
-rw-r--r--libraries/base/tests/IO/.gitignore75
-rw-r--r--libraries/base/tests/Numeric/.gitignore10
-rw-r--r--libraries/base/tests/System/.gitignore8
-rw-r--r--libraries/base/tests/Text.Printf/.gitignore2
-rw-r--r--libraries/template-haskell/tests/.gitignore2
-rw-r--r--testsuite/tests/annotations/should_compile/th/.gitignore1
-rw-r--r--testsuite/tests/callarity/perf/.gitignore1
-rw-r--r--testsuite/tests/callarity/should_run/.gitignore1
-rw-r--r--testsuite/tests/callarity/unittest/.gitignore1
-rw-r--r--testsuite/tests/codeGen/should_run/.gitignore11
-rw-r--r--testsuite/tests/concurrent/should_run/.gitignore6
-rw-r--r--testsuite/tests/cpranal/should_run/.gitignore1
-rw-r--r--testsuite/tests/deSugar/should_run/.gitignore1
-rw-r--r--testsuite/tests/deriving/should_run/.gitignore1
-rw-r--r--testsuite/tests/driver/.gitignore1
-rw-r--r--testsuite/tests/driver/T7835/.gitignore1
-rw-r--r--testsuite/tests/driver/T8526/.gitignore1
-rw-r--r--testsuite/tests/driver/T8602/.gitignore1
-rw-r--r--testsuite/tests/ffi/should_run/.gitignore1
-rw-r--r--testsuite/tests/ghc-api/.gitignore2
-rw-r--r--testsuite/tests/ghci/scripts/.gitignore2
-rw-r--r--testsuite/tests/numeric/should_run/.gitignore2
-rw-r--r--testsuite/tests/patsyn/should_run/.gitignore2
-rw-r--r--testsuite/tests/perf/should_run/.gitignore8
-rw-r--r--testsuite/tests/primops/should_run/.gitignore2
-rw-r--r--testsuite/tests/quasiquotation/.gitignore1
-rw-r--r--testsuite/tests/rts/.gitignore13
-rw-r--r--testsuite/tests/simplCore/should_run/.gitignore4
-rw-r--r--testsuite/tests/stranal/should_run/T8425/.gitignore1
-rw-r--r--testsuite/tests/th/.gitignore2
-rw-r--r--testsuite/tests/typecheck/should_compile/.gitignore1
-rw-r--r--testsuite/tests/typecheck/should_run/.gitignore3
34 files changed, 266 insertions, 1 deletions
diff --git a/libraries/base/tests/.gitignore b/libraries/base/tests/.gitignore
new file mode 100644
index 0000000000..a909c5cf51
--- /dev/null
+++ b/libraries/base/tests/.gitignore
@@ -0,0 +1,93 @@
+.hpc.CPUTime001
+.hpc.CatEntail
+.hpc.CatPairs
+.hpc.T4006
+.hpc.T5943
+.hpc.T5962
+.hpc.T7034
+.hpc.T7457
+.hpc.T7653
+.hpc.T7773
+.hpc.T7787
+.hpc.addr001
+.hpc.assert
+.hpc.char001
+.hpc.char002
+.hpc.cstring001
+.hpc.data-fixed-show-read
+.hpc.dynamic001
+.hpc.dynamic002
+.hpc.dynamic003
+.hpc.dynamic004
+.hpc.dynamic005
+.hpc.echo001
+.hpc.enum01
+.hpc.enum02
+.hpc.enum03
+.hpc.enum04
+.hpc.enumDouble
+.hpc.enumRatio
+.hpc.exceptionsrun001
+.hpc.exceptionsrun002
+.hpc.fixed
+.hpc.genericNegative001
+.hpc.hGetBuf002
+.hpc.hGetBuf003
+.hpc.hPutBuf001
+.hpc.hPutBuf002
+.hpc.hTell001
+.hpc.hTell002
+.hpc.ioref001
+.hpc.ix001
+.hpc.length001
+.hpc.lex001
+.hpc.list001
+.hpc.list002
+.hpc.list003
+.hpc.memo001
+.hpc.memo002
+.hpc.performGC001
+.hpc.qsem001
+.hpc.qsemn001
+.hpc.quotOverflow
+.hpc.rand001
+.hpc.ratio001
+.hpc.readDouble001
+.hpc.readFixed001
+.hpc.readFloat
+.hpc.readInteger001
+.hpc.readLitChar
+.hpc.reads001
+.hpc.show001
+.hpc.showDouble
+.hpc.stableptr001
+.hpc.stableptr003
+.hpc.stableptr004
+.hpc.stableptr005
+.hpc.take001
+.hpc.tempfiles
+.hpc.text001
+.hpc.topHandler01
+.hpc.topHandler02
+.hpc.topHandler03
+.hpc.trace001
+.hpc.tup001
+.hpc.unicode001
+.hpc.unicode002
+.hpc.weak001
+T4006
+T5943
+T5962
+T7034
+T7457
+T7653
+T7773
+T7787
+T8766
+T8766.stats
+qsem001
+qsemn001
+readFixed001
+topHandler01
+topHandler02
+topHandler03
diff --git a/libraries/base/tests/Concurrent/.gitignore b/libraries/base/tests/Concurrent/.gitignore
new file mode 100644
index 0000000000..70f284856f
--- /dev/null
+++ b/libraries/base/tests/Concurrent/.gitignore
@@ -0,0 +1,5 @@
+.hpc.Chan002
+.hpc.Chan003
+.hpc.ThreadDelay001
+Chan002
+Chan003
diff --git a/libraries/base/tests/IO/.gitignore b/libraries/base/tests/IO/.gitignore
new file mode 100644
index 0000000000..f8fcfa8ba1
--- /dev/null
+++ b/libraries/base/tests/IO/.gitignore
@@ -0,0 +1,75 @@
+.hpc.IOError001
+.hpc.IOError002
+.hpc.T2122
+.hpc.T4144
+.hpc.T4808
+.hpc.T4855
+.hpc.T4895
+.hpc.T7853
+.hpc.concio002
+.hpc.countReaders001
+.hpc.decodingerror001
+.hpc.decodingerror002
+.hpc.encoding001
+.hpc.encoding002
+.hpc.encoding003
+.hpc.encoding004
+.hpc.encodingerror001
+.hpc.finalization001
+.hpc.hClose001
+.hpc.hClose002
+.hpc.hClose003
+.hpc.hDuplicateTo001
+.hpc.hFileSize001
+.hpc.hFileSize002
+.hpc.hFlush001
+.hpc.hGetBuf001
+.hpc.hGetBuffering001
+.hpc.hGetChar001
+.hpc.hGetLine001
+.hpc.hGetLine002
+.hpc.hGetLine003
+.hpc.hGetPosn001
+.hpc.hIsEOF001
+.hpc.hIsEOF002
+.hpc.hReady001
+.hpc.hReady002
+.hpc.hSeek001
+.hpc.hSeek002
+.hpc.hSeek003
+.hpc.hSeek004
+.hpc.hSetBuffering002
+.hpc.hSetBuffering003
+.hpc.hSetBuffering004
+.hpc.hSetEncoding001
+.hpc.ioeGetErrorString001
+.hpc.ioeGetFileName001
+.hpc.ioeGetHandle001
+.hpc.isEOF001
+.hpc.misc001
+.hpc.newline001
+.hpc.openFile001
+.hpc.openFile002
+.hpc.openFile003
+.hpc.openFile004
+.hpc.openFile005
+.hpc.openFile006
+.hpc.openFile007
+.hpc.openFile008
+.hpc.openTempFile001
+.hpc.putStr001
+.hpc.readFile001
+.hpc.readwrite001
+.hpc.readwrite002
+.hpc.readwrite003
+T2122
+T2122-test
+T3307
+T4808
+T4808.test
+T4855
+T4895
+T7853
+encoding003
+encoding004
+openFile003Dir
diff --git a/libraries/base/tests/Numeric/.gitignore b/libraries/base/tests/Numeric/.gitignore
new file mode 100644
index 0000000000..b944456eae
--- /dev/null
+++ b/libraries/base/tests/Numeric/.gitignore
@@ -0,0 +1,10 @@
+.hpc.num001
+.hpc.num002
+.hpc.num003
+.hpc.num004
+.hpc.num005
+.hpc.num006
+.hpc.num007
+.hpc.num008
+.hpc.num009
+.hpc.num010
diff --git a/libraries/base/tests/System/.gitignore b/libraries/base/tests/System/.gitignore
new file mode 100644
index 0000000000..fa2ab73827
--- /dev/null
+++ b/libraries/base/tests/System/.gitignore
@@ -0,0 +1,8 @@
+.hpc.T5930
+.hpc.Timeout001
+.hpc.exitWith001
+.hpc.getArgs001
+.hpc.getEnv001
+.hpc.system001
+T5930
+Timeout001
diff --git a/libraries/base/tests/Text.Printf/.gitignore b/libraries/base/tests/Text.Printf/.gitignore
new file mode 100644
index 0000000000..377d9ffcbd
--- /dev/null
+++ b/libraries/base/tests/Text.Printf/.gitignore
@@ -0,0 +1,2 @@
+.hpc.T1548
+T1548
diff --git a/libraries/template-haskell/tests/.gitignore b/libraries/template-haskell/tests/.gitignore
new file mode 100644
index 0000000000..ae0f7cb7ae
--- /dev/null
+++ b/libraries/template-haskell/tests/.gitignore
@@ -0,0 +1,2 @@
+.hpc.dataToExpQUnit
+dataToExpQUnit.comp.stderr
diff --git a/testsuite/tests/annotations/should_compile/th/.gitignore b/testsuite/tests/annotations/should_compile/th/.gitignore
new file mode 100644
index 0000000000..7bec7a7cb5
--- /dev/null
+++ b/testsuite/tests/annotations/should_compile/th/.gitignore
@@ -0,0 +1 @@
+build_make
diff --git a/testsuite/tests/callarity/perf/.gitignore b/testsuite/tests/callarity/perf/.gitignore
new file mode 100644
index 0000000000..9b33309aea
--- /dev/null
+++ b/testsuite/tests/callarity/perf/.gitignore
@@ -0,0 +1 @@
+T3924
diff --git a/testsuite/tests/callarity/should_run/.gitignore b/testsuite/tests/callarity/should_run/.gitignore
new file mode 100644
index 0000000000..5268126cf8
--- /dev/null
+++ b/testsuite/tests/callarity/should_run/.gitignore
@@ -0,0 +1 @@
+StrictLet
diff --git a/testsuite/tests/callarity/unittest/.gitignore b/testsuite/tests/callarity/unittest/.gitignore
new file mode 100644
index 0000000000..f7b31b6572
--- /dev/null
+++ b/testsuite/tests/callarity/unittest/.gitignore
@@ -0,0 +1 @@
+CallArity1
diff --git a/testsuite/tests/codeGen/should_run/.gitignore b/testsuite/tests/codeGen/should_run/.gitignore
new file mode 100644
index 0000000000..d313f5f6f0
--- /dev/null
+++ b/testsuite/tests/codeGen/should_run/.gitignore
@@ -0,0 +1,11 @@
+CopySmallArray
+CopySmallArrayStressTest
+SizeOfSmallArray
+StaticArraySize
+StaticByteArraySize
+T6084
+T7953
+T8103
+T8256
+T9001
+cgrun072
diff --git a/testsuite/tests/concurrent/should_run/.gitignore b/testsuite/tests/concurrent/should_run/.gitignore
new file mode 100644
index 0000000000..4f0a3175da
--- /dev/null
+++ b/testsuite/tests/concurrent/should_run/.gitignore
@@ -0,0 +1,6 @@
+T7970
+compareAndSwap
+readMVar1
+readMVar2
+readMVar3
+tryReadMVar1
diff --git a/testsuite/tests/cpranal/should_run/.gitignore b/testsuite/tests/cpranal/should_run/.gitignore
new file mode 100644
index 0000000000..a4457dd566
--- /dev/null
+++ b/testsuite/tests/cpranal/should_run/.gitignore
@@ -0,0 +1 @@
+CPRRepeat
diff --git a/testsuite/tests/deSugar/should_run/.gitignore b/testsuite/tests/deSugar/should_run/.gitignore
new file mode 100644
index 0000000000..b064d1b75c
--- /dev/null
+++ b/testsuite/tests/deSugar/should_run/.gitignore
@@ -0,0 +1 @@
+T8952
diff --git a/testsuite/tests/deriving/should_run/.gitignore b/testsuite/tests/deriving/should_run/.gitignore
new file mode 100644
index 0000000000..92ab843a46
--- /dev/null
+++ b/testsuite/tests/deriving/should_run/.gitignore
@@ -0,0 +1 @@
+T8280
diff --git a/testsuite/tests/driver/.gitignore b/testsuite/tests/driver/.gitignore
new file mode 100644
index 0000000000..e7a0aad655
--- /dev/null
+++ b/testsuite/tests/driver/.gitignore
@@ -0,0 +1 @@
+T703
diff --git a/testsuite/tests/driver/T7835/.gitignore b/testsuite/tests/driver/T7835/.gitignore
new file mode 100644
index 0000000000..345e6aef71
--- /dev/null
+++ b/testsuite/tests/driver/T7835/.gitignore
@@ -0,0 +1 @@
+Test
diff --git a/testsuite/tests/driver/T8526/.gitignore b/testsuite/tests/driver/T8526/.gitignore
new file mode 100644
index 0000000000..42d2fab904
--- /dev/null
+++ b/testsuite/tests/driver/T8526/.gitignore
@@ -0,0 +1 @@
+A.inc
diff --git a/testsuite/tests/driver/T8602/.gitignore b/testsuite/tests/driver/T8602/.gitignore
new file mode 100644
index 0000000000..f0f435cb1d
--- /dev/null
+++ b/testsuite/tests/driver/T8602/.gitignore
@@ -0,0 +1 @@
+t8602.sh
diff --git a/testsuite/tests/ffi/should_run/.gitignore b/testsuite/tests/ffi/should_run/.gitignore
new file mode 100644
index 0000000000..d1b3f8850e
--- /dev/null
+++ b/testsuite/tests/ffi/should_run/.gitignore
@@ -0,0 +1 @@
+T8083
diff --git a/testsuite/tests/ghc-api/.gitignore b/testsuite/tests/ghc-api/.gitignore
new file mode 100644
index 0000000000..08e22ebb34
--- /dev/null
+++ b/testsuite/tests/ghc-api/.gitignore
@@ -0,0 +1,2 @@
+T8628
+T8639_api
diff --git a/testsuite/tests/ghci/scripts/.gitignore b/testsuite/tests/ghci/scripts/.gitignore
new file mode 100644
index 0000000000..d1b7ce25f3
--- /dev/null
+++ b/testsuite/tests/ghci/scripts/.gitignore
@@ -0,0 +1,2 @@
+föøbàr1.hs
+föøbàr2.hs
diff --git a/testsuite/tests/numeric/should_run/.gitignore b/testsuite/tests/numeric/should_run/.gitignore
new file mode 100644
index 0000000000..c484a26c83
--- /dev/null
+++ b/testsuite/tests/numeric/should_run/.gitignore
@@ -0,0 +1,2 @@
+NumDecimals
+T8726
diff --git a/testsuite/tests/patsyn/should_run/.gitignore b/testsuite/tests/patsyn/should_run/.gitignore
index 7380291005..e2087bd76a 100644
--- a/testsuite/tests/patsyn/should_run/.gitignore
+++ b/testsuite/tests/patsyn/should_run/.gitignore
@@ -1,7 +1,7 @@
eval
ex-prov
match
-
.hpc.eval
.hpc.ex-prov
.hpc.match
+ex-prov-run
diff --git a/testsuite/tests/perf/should_run/.gitignore b/testsuite/tests/perf/should_run/.gitignore
new file mode 100644
index 0000000000..064aeba752
--- /dev/null
+++ b/testsuite/tests/perf/should_run/.gitignore
@@ -0,0 +1,8 @@
+InlineArrayAlloc
+InlineByteArrayAlloc
+InlineCloneArrayAlloc
+T4267
+T5949
+T7619
+T7850
+T7954
diff --git a/testsuite/tests/primops/should_run/.gitignore b/testsuite/tests/primops/should_run/.gitignore
new file mode 100644
index 0000000000..184e53b8e4
--- /dev/null
+++ b/testsuite/tests/primops/should_run/.gitignore
@@ -0,0 +1,2 @@
+T6135
+T7689
diff --git a/testsuite/tests/quasiquotation/.gitignore b/testsuite/tests/quasiquotation/.gitignore
new file mode 100644
index 0000000000..d0d8953362
--- /dev/null
+++ b/testsuite/tests/quasiquotation/.gitignore
@@ -0,0 +1 @@
+T7918
diff --git a/testsuite/tests/rts/.gitignore b/testsuite/tests/rts/.gitignore
new file mode 100644
index 0000000000..1501ec6817
--- /dev/null
+++ b/testsuite/tests/rts/.gitignore
@@ -0,0 +1,13 @@
+T3424
+T5435_dyn_asm
+T5435_dyn_gcc
+T5435_v_asm
+T5435_v_gcc
+T7919
+T8035
+T8124
+T8209
+T8242
+T9045
+T9078
+linker_unload
diff --git a/testsuite/tests/simplCore/should_run/.gitignore b/testsuite/tests/simplCore/should_run/.gitignore
new file mode 100644
index 0000000000..2399b83105
--- /dev/null
+++ b/testsuite/tests/simplCore/should_run/.gitignore
@@ -0,0 +1,4 @@
+T2110
+T457
+runST
+simplrun011
diff --git a/testsuite/tests/stranal/should_run/T8425/.gitignore b/testsuite/tests/stranal/should_run/T8425/.gitignore
new file mode 100644
index 0000000000..881fef889a
--- /dev/null
+++ b/testsuite/tests/stranal/should_run/T8425/.gitignore
@@ -0,0 +1 @@
+T8425
diff --git a/testsuite/tests/th/.gitignore b/testsuite/tests/th/.gitignore
new file mode 100644
index 0000000000..86cbf4705e
--- /dev/null
+++ b/testsuite/tests/th/.gitignore
@@ -0,0 +1,2 @@
+T8186
+T8633
diff --git a/testsuite/tests/typecheck/should_compile/.gitignore b/testsuite/tests/typecheck/should_compile/.gitignore
new file mode 100644
index 0000000000..396a094472
--- /dev/null
+++ b/testsuite/tests/typecheck/should_compile/.gitignore
@@ -0,0 +1 @@
+tc263
diff --git a/testsuite/tests/typecheck/should_run/.gitignore b/testsuite/tests/typecheck/should_run/.gitignore
new file mode 100644
index 0000000000..d9ee251388
--- /dev/null
+++ b/testsuite/tests/typecheck/should_run/.gitignore
@@ -0,0 +1,3 @@
+T8492
+T8739
+TcTypeNatSimpleRun