9 lines
423 B
Meson
9 lines
423 B
Meson
game = 'arkanoid'
|
|
|
|
bash = find_program('bash')
|
|
|
|
goal = 'warpless'
|
|
test(goal + '-FullCycle', bash, workdir : meson.current_source_dir(), timeout: testTimeout, args : [ testCommands, goal + '.test', '--fullCycle'], suite: [ game, goal ] )
|
|
|
|
goal = 'warps'
|
|
test(goal + '-FullCycle', bash, workdir : meson.current_source_dir(), timeout: testTimeout, args : [ testCommands, goal + '.test', '--fullCycle'], suite: [ game, goal ] ) |