summaryrefslogtreecommitdiff
path: root/server/tests/SConscript
blob: b6c3bea5e44c0fa87173490bddf329d5e0d7292e (plain)
1
2
3
4
5
6
7
8
9
10
11
Import('env')

test_bld = Builder(
	action = '$SOURCE -e stdout && touch $TARGET',
	emitter = lambda target, source, env: (target[0].name + '.passed', env.Program(target[0].name + '.test', source))
)

env.Append(BUILDERS = {'Test' : test_bld})

env.Test('calculate_score', ['calculate_score.cpp', 'test_framework.cpp',
	'../player.cpp', '../client.cpp', '../connection.cpp', '../hand.cpp', '../score.cpp'] + Glob('../../common/*.cpp'))