diff options
author | Reid Barton <rwbarton@gmail.com> | 2015-05-19 01:23:59 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-06-01 03:42:30 -0500 |
commit | a52f1444ea4045a2075dc88bb973a9289ee7e2cf (patch) | |
tree | 36335b1def8dd1677cb5d7ae4489c4982bf19a65 /testsuite | |
parent | 4756438962a76d2dcedf63b90ec789cb054f9556 (diff) | |
download | haskell-a52f1444ea4045a2075dc88bb973a9289ee7e2cf.tar.gz |
In ghci linker, link against all previous temp sos (#10322)
The OS X dlopen() appears to only resolve undefined symbols in
the direct dependencies of the shared library it is loading.
Reviewed By: trommler, austin
Differential Revision: https://phabricator.haskell.org/D852
GHC Trac Issues: #10322
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/tests/ghci/scripts/all.T | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testsuite/tests/ghci/scripts/all.T b/testsuite/tests/ghci/scripts/all.T index e0f230185b..2c48358804 100755 --- a/testsuite/tests/ghci/scripts/all.T +++ b/testsuite/tests/ghci/scripts/all.T @@ -207,8 +207,6 @@ test('T9878b', extra_clean(['T9878b.hi','T9878b.o'])], ghci_script, ['T9878b.script']) test('T10122', normal, ghci_script, ['T10122.script']) -test('T10322', when(opsys('darwin'), expect_broken(10322)), - ghci_script, ['T10322.script']) test('T10321', normal, ghci_script, ['T10321.script']) @@ -218,3 +216,4 @@ test('T10408B', normal, run_command, ['$MAKE -s --no-print-directory T10408B']) test('T10248', normal, ghci_script, ['T10248.script']) test('T10110', normal, ghci_script, ['T10110.script']) +test('T10322', normal, ghci_script, ['T10322.script']) |