forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
testing: use
@test
instead of @assert
everywhere.
- Loading branch information
1 parent
9d8e715
commit 93392c0
Showing
10 changed files
with
210 additions
and
212 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
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 @@ | ||
ccall_test_func(x) = ccall((:testUcharX, "./libccalltest"), Int32, (Uint8,), x) | ||
@assert ccall_test_func(3) == 1 | ||
@assert ccall_test_func(259) == 1 | ||
@test ccall_test_func(3) == 1 | ||
@test ccall_test_func(259) == 1 |
Oops, something went wrong.