diff --git a/test/ConcurrentCollectionsTests/Project.toml b/test/ConcurrentCollectionsTests/Project.toml index 159bb1d..6728816 100644 --- a/test/ConcurrentCollectionsTests/Project.toml +++ b/test/ConcurrentCollectionsTests/Project.toml @@ -4,6 +4,7 @@ authors = ["Takafumi Arakaki and contributors"] version = "0.1.0-DEV" [deps] +Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" ConcurrentCollections = "5060bff5-0b44-40c5-b522-fcd3ca5cecdd" ConcurrentCollectionsBenchmarks = "172d371b-ba13-4e7e-a6ad-f169f5735fdf" Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" diff --git a/test/ConcurrentCollectionsTests/src/ConcurrentCollectionsTests.jl b/test/ConcurrentCollectionsTests/src/ConcurrentCollectionsTests.jl index c5ad63f..3d3c532 100644 --- a/test/ConcurrentCollectionsTests/src/ConcurrentCollectionsTests.jl +++ b/test/ConcurrentCollectionsTests/src/ConcurrentCollectionsTests.jl @@ -12,6 +12,7 @@ include("test_msqueue.jl") include("test_ssqueue.jl") include("test_tsstack.jl") include("test_work_stealing_deque.jl") +include("test_aqua.jl") function __init__() @info "Starting test" Threads.nthreads() diff --git a/test/ConcurrentCollectionsTests/src/test_aqua.jl b/test/ConcurrentCollectionsTests/src/test_aqua.jl new file mode 100644 index 0000000..ff1188d --- /dev/null +++ b/test/ConcurrentCollectionsTests/src/test_aqua.jl @@ -0,0 +1,8 @@ +module TestAqua + +import Aqua +import ConcurrentCollections + +test() = Aqua.test_all(ConcurrentCollections; unbound_args = false) + +end # module diff --git a/test/Project.toml b/test/Project.toml index 3d816b5..29cd15b 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -1,4 +1,5 @@ [deps] +Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" BangBang = "198e06fe-97b7-11e9-32a5-e1d131e6ad66" BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" ConcurrentCollections = "5060bff5-0b44-40c5-b522-fcd3ca5cecdd" @@ -8,3 +9,6 @@ ProgressLogging = "33c8b6b6-d38a-422a-b730-caa89a2f386c" SyncBarriers = "3986aa12-c984-439b-887a-f8545bea0e93" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" TestFunctionRunner = "792026f5-ac9a-4a19-adcb-47b0ce2deb5d" + +[compat] +Aqua = "0.5"