|
The pretty_printer_test_program target uses AIB_COMPONENT=pretty-printer-test (singular) whereas the build_pretty_printer_test() function uses AIB_COMPONENT='pretty-printer-tests' (plural).
931
|
pretty_printer_test_program = env.Program(
|
932
|
target='pretty_printer_test_program',
|
933
|
source=[
|
934
|
'pretty_printer_test_program.cpp',
|
935
|
],
|
936
|
LIBDEPS=[
|
937
|
'$BUILD_DIR/mongo/base',
|
938
|
],
|
939
|
AIB_COMPONENT='pretty-printer-test',
|
940
|
AIB_COMPONENTS_EXTRA=['dist-test'],
|
941
|
)
|
This hasn't been an issue in Evergreen testing for the pretty printers because the pretty printers would have been built (by SCons, not ninja) using the install-dist-test target.
|