[commit: ghc] master: Skip eventlog tests in GHCi way (c0e5087)

git at git.haskell.org git at git.haskell.org
Wed Sep 5 11:11:54 UTC 2018


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/c0e5087d01e2912f00feede6c259a2ee87685c90/ghc

>---------------------------------------------------------------

commit c0e5087d01e2912f00feede6c259a2ee87685c90
Author: Ömer Sinan Ağacan <omeragacan at gmail.com>
Date:   Wed Sep 5 13:11:30 2018 +0200

    Skip eventlog tests in GHCi way
    
    Summary: (GHCi doesn't generate event logs)
    
    Test Plan:
    These tests were failing in GHCi way, they're now skipped in GHCi way as GHCi
    doesn't generate eventlogs
    
    Reviewers: bgamari, simonmar, maoe, alpmestan
    
    Reviewed By: alpmestan
    
    Subscribers: rwbarton, carter
    
    GHC Trac Issues: #15587
    
    Differential Revision: https://phabricator.haskell.org/D5119


>---------------------------------------------------------------

c0e5087d01e2912f00feede6c259a2ee87685c90
 testsuite/tests/rts/all.T | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T
index d68722d..6e1d90d 100644
--- a/testsuite/tests/rts/all.T
+++ b/testsuite/tests/rts/all.T
@@ -135,11 +135,11 @@ test('T2615',
 
 # omit dyn and profiling ways, because we don't build dyn_l or p_l
 # variants of the RTS by default
-test('traceEvent', [ omit_ways(['dyn'] + prof_ways),
+test('traceEvent', [ omit_ways(['dyn', 'ghci'] + prof_ways),
                      extra_run_opts('+RTS -ls -RTS') ],
                    compile_and_run, ['-eventlog'])
 
-test('traceBinaryEvent', [ omit_ways(['dyn'] + prof_ways),
+test('traceBinaryEvent', [ omit_ways(['dyn', 'ghci'] + prof_ways),
                            extra_run_opts('+RTS -ls -RTS') ],
                          compile_and_run, ['-eventlog'])
 



More information about the ghc-commits mailing list