blob: 9962189a070ea439baf174ac0176904ea7b0574a [file] [log] [blame]
# Copyright 2016 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.
source_set("small_tests") {
testonly = true
sources = [
"longjmp.cc",
#TODO: write asm for arm64 and x86_64 for
#longjmp_float.cc and include it in tests
"setlongjmp.cc",
]
deps = [
":slackslotstest",
"//third_party/googletest:gtest",
]
}
source_set("slackslotstest") {
testonly = true
cflags_cc = [ "-O1" ]
if (is_debug) {
configs -= [ "//build/config:debug" ]
}
sources = [
"longjmp_stackslots_test.cc",
]
deps = [
"//third_party/googletest:gtest",
]
}