blob: 99f539a2df805906efb41297f10140ca51ff5879 [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.
import("//build/components.gni")
import("//build/test.gni")
test("qsort") {
output_name = "qsort-test"
sources = [ "qsort.c" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("qsort-test-pkg") {
package_name = "qsort-test"
deps = [ ":qsort" ]
}
group("tests") {
testonly = true
deps = [ ":qsort-test-pkg" ]
}