blob: 2284ae3f93c2b2c4e89eadc4d6a679aea8cc2e75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- mode: python -*-
Import("env")
env = env.Clone();
# Not a CppUnitTest because it needs low-level control of thread creation and signals,
# so it shouldn't use unittest_main and typical mongo startup routines.
env.RegisterUnitTest(env.Program(
target='sigaltstack_location_test',
source=[
'sigaltstack_location_test.cpp',
],
LIBDEPS=[
'$BUILD_DIR/mongo/base',
]
)[0])
|