diff options
author | Gerald Combs <gerald@wireshark.org> | 2015-03-13 09:21:01 -0700 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2015-03-13 22:41:40 +0000 |
commit | f074647d2b6b16af34a2a9595adffd78c3a2dfe3 (patch) | |
tree | 89e929cb7e60a9dd4b9fe8dfa17a43f89b72fe73 /Makefile.nmake | |
parent | 8f9e543d4ec168ba3f85bc37ba6236d08c910a53 (diff) | |
download | wireshark-f074647d2b6b16af34a2a9595adffd78c3a2dfe3.tar.gz wireshark-f074647d2b6b16af34a2a9595adffd78c3a2dfe3.tar.bz2 wireshark-f074647d2b6b16af34a2a9595adffd78c3a2dfe3.zip |
Add a test-programs target everywhere.
Add a "test-programs" target to each toolchain which builds each unit
test executable. "test-programs" must now be built before running
the unit test suite.
Change-Id: I9317a1e305d987f244c4bd8b4a7f05d11fed7090
Reviewed-on: https://code.wireshark.org/review/7673
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'Makefile.nmake')
-rw-r--r-- | Makefile.nmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index f1cd014ffc..e2193657c4 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -553,6 +553,11 @@ text2pcap-scanner.c : text2pcap-scanner.l text2pcap-scanner.obj : text2pcap-scanner.c $(CC) $(GENERATED_CFLAGS) -Fd.\ -c $? +test-programs: + cd epan + $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake test-programs + cd .. + clean-local: rm -f $(wireshark_gtk_OBJECTS) $(tshark_OBJECTS) $(tfshark_OBJECTS) $(dumpcap_OBJECTS) $(rawshark_OBJECTS) \ $(EXECUTABLES) *.nativecodeanalysis.xml *.pdb *.sbr *.exe.manifest \ |