Skip to content
Snippets Groups Projects
Commit 3e606230 authored by Krzysztof Gogolewski's avatar Krzysztof Gogolewski Committed by Marge Bot
Browse files

Fix IPE test

A helper function was defined in a different module than used.
To reproduce: ./hadrian/build test --test-root-dirs=testsuite/tests/rts/ipe
parent cee81370
No related branches found
No related tags found
No related merge requests found
......@@ -216,10 +216,6 @@ test('EventlogOutput_IPE',
],
makefile_test, ['EventlogOutput_IPE'])
# Remove the capability prefix from IPE event log lines.
def noCapabilityOutputFilter(s):
return re.sub(r'[a-f0-9]+: IPE:', 'IPE:', s)
test('T4059', req_c, makefile_test, ['T4059'])
# Test for #4274
......
# Remove the capability prefix from IPE event log lines.
def noCapabilityOutputFilter(s):
return re.sub(r'[a-f0-9]+: IPE:', 'IPE:', s)
test('ipeMap', [extra_files(['ipe_lib.c', 'ipe_lib.h']), c_src, omit_ghci], compile_and_run, ['ipe_lib.c'])
# Manually create IPE entries and dump them to event log (stderr).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment