Changeset 1488
- Timestamp:
- 07/09/06 18:20:26 (3 years ago)
- Location:
- trunk/test
- Files:
-
- 1 added
- 1 modified
-
Makefile.am (modified) (3 diffs)
-
test.mac (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/Makefile.am
r1465 r1488 14 14 15 15 EXTRA_DIST = test.pcap test.auto_bridge test.auto_client test.auto_router \ 16 test.auto_server test.cidr test.comment test.port \16 test.auto_server test.cidr test.comment test.port test.mac \ 17 17 test.prep_config test.primary test.regex test.secondary 18 18 … … 36 36 $(TCPPREP) --load-opts config -o test.prep_config 37 37 $(TCPPREP) -i test.pcap -o test.port -p 38 $(TCPPREP) -i test.pcap -o test.mac -e 00:02:3b:00:3d:ce 38 39 $(TCPPREP) -i test.pcap -o test.cidr -c '216.27.178.0/24' 39 40 $(TCPPREP) -i test.pcap -o test.regex -r '216.27.178.*' 40 41 $(TCPPREP) -i test.pcap -o test.comment -C "This is a comment" -p 41 42 42 tcpprep: auto_router auto_bridge auto_client auto_server cidr regex port comment print_info print_comment prep_config43 tcpprep: auto_router auto_bridge auto_client auto_server cidr regex port mac comment print_info print_comment prep_config 43 44 tcprewrite: rewrite_cache rewrite_cidr rewrite_trunc rewrite_pad rewrite_rand rewrite_layer2 rewrite_config 44 45 tcpreplay: replay_basic replay_cache replay_pps replay_rate replay_top replay_config replay_multi … … 100 101 if [ $? ] ; then $(PRINTF) "\t\t%s\n" "FAILED"; else $(PRINTF) "\t\t%s\n" "OK"; fi 101 102 103 mac: 104 $(PRINTF) "%s" "[tcpprep] MAC mode test: " 105 $(PRINTF) "%s\n" "*** [tcpprep] MAC mode test: " >>test.log 106 $(TCPPREP) $(ENABLE_DEBUG) -i test.pcap -o test.$@1 -e 00:02:3b:00:3d:ce 2>>test.log 107 diff test.$@ test.$@1 >>test.log 2>&1 108 if [ $? ] ; then $(PRINTF) "\t\t%s\n" "FAILED"; else $(PRINTF) "\t\t%s\n" "OK"; fi 109 102 110 comment: 103 111 $(PRINTF) "%s" "[tcpprep] Comment mode test: "
