blob: 83e3ed8641ac5a523af62091a87728ae44b87bfe [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/test.gni")
import("//src/sys/build/fuchsia_unittest_package.gni")
test("qsort") {
output_name = "qsort-test"
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "qsort.c" ]
deps = [
"//sdk/lib/fdio",
"//zircon/public/lib/zxtest",
]
}
fuchsia_unittest_package("qsort-test-pkg") {
package_name = "qsort-test"
deps = [ ":qsort" ]
}
group("tests") {
testonly = true
deps = [ ":qsort-test-pkg" ]
}