Skip to content
Snippets Groups Projects
Unverified Commit d465a426 authored by Carsten Bauer's avatar Carsten Bauer Committed by GitHub
Browse files

Merge pull request #21 from JuliaPerf/carstenbauer/issue20

parents 3c18b354 cc245fe6
No related branches found
No related tags found
No related merge requests found
Pipeline #31810 failed
......@@ -15,11 +15,12 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
BenchmarkTools = "0.6, 0.7, 1.0"
Downloads = "1.4"
LoopVectorization = "0.12"
TestItemRunner = "0.2"
julia = "1.6"
[extras]
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
[targets]
test = ["Test", "SafeTestsets"]
test = ["Test", "TestItemRunner"]
using SafeTestsets
using TestItemRunner
Base.Threads.nthreads() > 1 || (@warn "Running test suite with only a single thread!")
@time begin
@time @safetestset "Kernels" begin include("kernels_test.jl") end
@time @safetestset "Benchmarks" begin include("benchmarks_test.jl") end
@time @safetestset "Original STREAM" begin include("original_STREAM_test.jl") end
end
@run_package_tests
@testitem "Kernels" begin include("kernels_test.jl") end
@testitem "Benchmarks" begin include("benchmarks_test.jl") end
@testitem "Original STREAM" begin include("original_STREAM_test.jl") end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment