-
-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix test issue when checking environment on mac: if you run a "system…
…" binary, you cannot access its environment, so better run a non-system one
- Loading branch information
1 parent
c227dae
commit 9d313ae
Showing
2 changed files
with
45 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// Does nothing and just exits after waiting for 30 seconds. | ||
|
||
fn main() { | ||
std::thread::sleep(std::time::Duration::from_secs(30)); | ||
} |
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