# -*- mode: python -*-

Import("env")

env = env.Clone()

# writes multi-byte sequences to console
# to support manual testing of console stream  under Windows
# output should be visually verified under Command Prompt or Power Shell
env.Program(
    target='console_test',
    source=[
        'console_test.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/base',
        '$BUILD_DIR/mongo/unittest/unittest_main'
    ],
    AIB_COMPONENT="standalone-console-test",
)

env.CppUnitTest(
    target='logger_test',
    source=[
        'rotatable_file_writer_test.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/base',
    ],
)
