<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/haskell.git/testsuite/tests/driver/recomp004/all.T, branch wip/python-buffer</title>
<subtitle>gitlab.haskell.org: ghc/ghc.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/haskell.git/'/>
<entry>
<title>testsuite: Use makefile_test</title>
<updated>2019-01-30T15:06:31+00:00</updated>
<author>
<name>Ben Gamari</name>
<email>ben@smart-cactus.org</email>
</author>
<published>2019-01-21T04:46:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/haskell.git/commit/?id=513a449c9dd10887d6dc757d55286749b2594b09'/>
<id>513a449c9dd10887d6dc757d55286749b2594b09</id>
<content type='text'>
This eliminates most uses of run_command in the testsuite in favor of the more
structured makefile_test.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This eliminates most uses of run_command in the testsuite in favor of the more
structured makefile_test.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Batch merge"</title>
<updated>2019-01-30T15:05:19+00:00</updated>
<author>
<name>Ben Gamari</name>
<email>ben@smart-cactus.org</email>
</author>
<published>2019-01-30T15:05:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/haskell.git/commit/?id=172a59335fa6c76b17fb6795e87fbc7fcfd198e6'/>
<id>172a59335fa6c76b17fb6795e87fbc7fcfd198e6</id>
<content type='text'>
This reverts commit 76c8fd674435a652c75a96c85abbf26f1f221876.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 76c8fd674435a652c75a96c85abbf26f1f221876.
</pre>
</div>
</content>
</entry>
<entry>
<title>Batch merge</title>
<updated>2019-01-30T06:06:12+00:00</updated>
<author>
<name>Ben Gamari</name>
<email>ben@well-typed.com</email>
</author>
<published>2019-01-30T06:06:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/haskell.git/commit/?id=76c8fd674435a652c75a96c85abbf26f1f221876'/>
<id>76c8fd674435a652c75a96c85abbf26f1f221876</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: remove extra_files.py (#12223)</title>
<updated>2017-02-26T22:30:48+00:00</updated>
<author>
<name>Reid Barton</name>
<email>rwbarton@gmail.com</email>
</author>
<published>2017-02-25T02:14:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/haskell.git/commit/?id=3415bcaa0b1903b5e12dfaadb5b774718e406eab'/>
<id>3415bcaa0b1903b5e12dfaadb5b774718e406eab</id>
<content type='text'>
The script I used is included as testsuite/driver/kill_extra_files.py,
though at this point it is for mostly historical interest.

Some of the tests in libraries/hpc relied on extra_files.py, so this
commit includes an update to that submodule.

One test in libraries/process also relies on extra_files.py, but we
cannot update that submodule so easily, so for now we special-case it
in the test driver.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The script I used is included as testsuite/driver/kill_extra_files.py,
though at this point it is for mostly historical interest.

Some of the tests in libraries/hpc relied on extra_files.py, so this
commit includes an update to that submodule.

One test in libraries/process also relies on extra_files.py, but we
cannot update that submodule so easily, so for now we special-case it
in the test driver.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove clean_cmd and extra_clean usage from .T files</title>
<updated>2017-01-22T19:43:51+00:00</updated>
<author>
<name>Thomas Miedema</name>
<email>thomasmiedema@gmail.com</email>
</author>
<published>2017-01-22T18:24:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/haskell.git/commit/?id=5d38fb69fd1e7a434ccc3147ae6a17fe0b5b0be3'/>
<id>5d38fb69fd1e7a434ccc3147ae6a17fe0b5b0be3</id>
<content type='text'>
The `clean_cmd` and `extra_clean` setup functions don't do anything.
Remove them from .T files.

Created using https://github.com/thomie/refactor-ghc-testsuite. This
diff is a test for the .T-file parser/processor/pretty-printer in that
repository.

    find . -name '*.T' -exec ~/refactor-ghc-testsuite/Main "{}" \;

Tests containing inline comments or multiline strings are not modified.

Preparation for #12223.

Test Plan: Harbormaster

Reviewers: austin, hvr, simonmar, mpickering, bgamari

Reviewed By: mpickering

Subscribers: mpickering

Differential Revision: https://phabricator.haskell.org/D3000

GHC Trac Issues: #12223
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `clean_cmd` and `extra_clean` setup functions don't do anything.
Remove them from .T files.

Created using https://github.com/thomie/refactor-ghc-testsuite. This
diff is a test for the .T-file parser/processor/pretty-printer in that
repository.

    find . -name '*.T' -exec ~/refactor-ghc-testsuite/Main "{}" \;

Tests containing inline comments or multiline strings are not modified.

Preparation for #12223.

Test Plan: Harbormaster

Reviewers: austin, hvr, simonmar, mpickering, bgamari

Reviewed By: mpickering

Subscribers: mpickering

Differential Revision: https://phabricator.haskell.org/D3000

GHC Trac Issues: #12223
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some written-but-not-cleaned files</title>
<updated>2011-09-04T18:36:56+00:00</updated>
<author>
<name>Ian Lynagh</name>
<email>igloo@earth.li</email>
</author>
<published>2011-09-04T18:36:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/haskell.git/commit/?id=20450f696ef9c0e744d7def916f503681d741056'/>
<id>20450f696ef9c0e744d7def916f503681d741056</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move tests from tests/ghc-regress/* to just tests/*</title>
<updated>2011-07-20T18:26:35+00:00</updated>
<author>
<name>David Terei</name>
<email>davidterei@gmail.com</email>
</author>
<published>2011-07-20T18:09:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/haskell.git/commit/?id=16514f272fb42af6e9c7674a9bd6c9dce369231f'/>
<id>16514f272fb42af6e9c7674a9bd6c9dce369231f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
