blob: fb9ab2a0e5cfe20d32a237c5867678b61a15264e [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
group("test") {
testonly = true
deps = [
":async",
]
}
test("async") {
sources = [
"default_tests.cpp",
"exception_tests.cpp",
"receiver_tests.cpp",
"task_tests.cpp",
"time_tests.cpp",
"trap_tests.cpp",
"wait_tests.cpp",
]
deps = [
"$zx/system/ulib/async",
"$zx/system/ulib/async:async-cpp",
"$zx/system/ulib/async:async-default",
"$zx/system/ulib/async-testutils",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/unittest",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
]
}