Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
U
unix
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
Packages
unix
Compare revisions
bd2631b375f8c2e1d9f6c778065d0ef699cf853a to 1577b062f63dc94c96678ac2e166eb235e5f6ce3
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ghc/packages/unix
Select target project
No results found
1577b062f63dc94c96678ac2e166eb235e5f6ce3
Select Git revision
Swap
Target
ghc/packages/unix
Select target project
Haskell-mouse/unix
1 result
bd2631b375f8c2e1d9f6c778065d0ef699cf853a
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
testsuite: Skip forking tests in profiled ways
· 1577b062
Ben Gamari
authored
5 years ago
As noted in GHC #11645 and #8842, forking and profiling don't go well together.
1577b062
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/all.T
+5
-1
5 additions, 1 deletion
tests/all.T
tests/libposix/all.T
+2
-1
2 additions, 1 deletion
tests/libposix/all.T
with
7 additions
and
2 deletions
tests/all.T
View file @
1577b062
...
...
@@ -4,7 +4,11 @@ test('signals002', [], compile_and_run, ['-package unix'])
test
('
fileexist01
',
normal
,
compile_and_run
,
['
-package unix
'])
# test #4512
test
('
forkprocess01
',
extra_ways
(['
threaded1_ls
']),
compile_and_run
,
test
('
forkprocess01
',
[
extra_ways
(['
threaded1_ls
']),
# the forked process breaks the .hp file
omit_ways
(
prof_ways
)],
compile_and_run
,
['
-package unix
'])
#
...
...
This diff is collapsed.
Click to expand it.
tests/libposix/all.T
View file @
1577b062
...
...
@@ -13,4 +13,5 @@ test('posix006', reqlib('unix'), compile_and_run, [''])
test
('
posix009
',
[
omit_ways
(
threaded_ways
),
reqlib
('
unix
')
],
compile_and_run
,
[''])
test
('
posix010
',
reqlib
('
unix
'),
compile_and_run
,
[''])
test
('
posix014
',
[
reqlib
('
unix
')
],
compile_and_run
,
[''])
test
('
posix014
',
[
reqlib
('
unix
'),
omit_ways
(
prof_ways
)
],
compile_and_run
,
[''])
This diff is collapsed.
Click to expand it.