-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It was not using the dirty-chai so the expect.to.not.exist was failing. It was also trying to trap SIG* with bin/sh which does not recognize those signals (dropping the SIG prefix works in sh). This SIG* trapping was what I think was making CI tests fail so I enabled testing in CI again.
- Loading branch information
Showing
2 changed files
with
10 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
trap "echo 'you cannot kill me!'" SIGHUP SIGINT SIGTERM SIGQUIT SIGPIPE | ||
while true; do sleep 1; done | ||
trap "echo 'you cannot kill me!'" HUP INT TERM QUIT PIPE | ||
while true; do sleep 1; done |