annotate enigma/tests/SConscript @ 11:da231533c5c7

To support hill climbing and fewer enigma machine constructor calls, the enigma machine now uses shared_ptr instead of unique_ptr.
author Brian Neal <bgneal@gmail.com>
date Fri, 29 Jun 2012 23:20:33 -0500
parents 2792ca4ffa84
children
rev   line source
bgneal@2 1 Import('env')
bgneal@2 2
bgneal@3 3 env.CxxTest('test_suite', [
bgneal@3 4 'test_rotor.t.h',
bgneal@3 5 'test_plugboard.t.h',
bgneal@4 6 'test_machine.t.h',
bgneal@3 7 ]
bgneal@3 8 )
bgneal@2 9