blob: 4b6ee130283d1c8eab37f9e0639257b1c401d9d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
setTestOpts(only_compiler_types(['ghc']))
def f(name, opts):
if not ('ghci' in config.run_ways):
opts.skip = 1
setTestOpts(f)
test('ghciprog004',
extra_clean(['ctest.c', 'ctest.o']),
run_command,
['$MAKE -s --no-print-directory ghciprog004'])
|