diff options
author | Paolo Capriotti <p.capriotti@gmail.com> | 2012-05-04 13:05:01 +0100 |
---|---|---|
committer | Paolo Capriotti <p.capriotti@gmail.com> | 2012-05-15 08:29:30 +0100 |
commit | 24d70daed5082f1aa32424e12650e136ca404771 (patch) | |
tree | f0a9e84113a2bcc7942ec97f661243bbc92b5e30 /testsuite/tests/safeHaskell/check/pkg01/all.T | |
parent | 37a28207a5e30fb4737f77cd8d458f2b9090275f (diff) | |
download | haskell-24d70daed5082f1aa32424e12650e136ca404771.tar.gz |
Rename package-conf flags to package-db.
Diffstat (limited to 'testsuite/tests/safeHaskell/check/pkg01/all.T')
-rw-r--r-- | testsuite/tests/safeHaskell/check/pkg01/all.T | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/safeHaskell/check/pkg01/all.T b/testsuite/tests/safeHaskell/check/pkg01/all.T index aff23ebd57..f4afd3c9ac 100644 --- a/testsuite/tests/safeHaskell/check/pkg01/all.T +++ b/testsuite/tests/safeHaskell/check/pkg01/all.T @@ -24,13 +24,13 @@ test('ImpSafe01', normal, compile_fail, ['-fpackage-trust -distrust base']) # Succeed since we don't enable package trust test('ImpSafe02', normal, compile, ['-distrust base']) -test('ImpSafeOnly01', [normal, alone], compile, ['-package-conf local.db -trust base']) +test('ImpSafeOnly01', [normal, alone], compile, ['-package-db local.db -trust base']) -test('ImpSafeOnly02', [normal, alone], compile, ['-package-conf local.db -trust base -trust safePkg01']) +test('ImpSafeOnly02', [normal, alone], compile, ['-package-db local.db -trust base -trust safePkg01']) # Fail since we enable package trust -test('ImpSafeOnly03', [normal, alone], compile_fail, ['-fpackage-trust -package-conf local.db -trust base']) +test('ImpSafeOnly03', [normal, alone], compile_fail, ['-fpackage-trust -package-db local.db -trust base']) # Succeed since we don't enable package trust -test('ImpSafeOnly04', [normal, alone], compile, ['-package-conf local.db -trust base']) +test('ImpSafeOnly04', [normal, alone], compile, ['-package-db local.db -trust base']) |