Wireshark-commits: [Wireshark-commits] master 7591ed8: Test: Add dftest to our tests.
From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Fri, 04 May 2018 22:44:43 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=7591ed848e862d6f6f91d7398a1b98c4e5dea0fa
Submitter: Gerald Combs (gerald@xxxxxxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

7591ed8 by Gerald Combs (gerald@xxxxxxxxxxxxx):

    Test: Add dftest to our tests.
    
    Move the dfilter tests and captures from tools to test.
    
    Change-Id: I2e6a6cc1d383c985ba07c76c93ae1c57d3c8f84c
    Reviewed-on: https://code.wireshark.org/review/27339
    Petri-Dish: Gerald Combs <gerald@xxxxxxxxxxxxx>
    Tested-by: Petri Dish Buildbot
    Reviewed-by: Gerald Combs <gerald@xxxxxxxxxxxxx>
    

Actions performed:

    from  8db1616   Get rid of more autotoolsisms.
    adds  7591ed8   Test: Add dftest to our tests.


Summary of changes:
 {tools/dftestfiles => test/captures}/arp.pcap      | Bin
 {tools/dftestfiles => test/captures}/http.pcap     | Bin
 {tools/dftestfiles => test/captures}/ipv6.pcap     | Bin
 {tools/dftestfiles => test/captures}/ipx_rip.pcap  | Bin
 {tools/dftestfiles => test/captures}/nfs.pcap      | Bin
 {tools/dftestfiles => test/captures}/ntp.pcap      | Bin
 {tools/dftestfiles => test/captures}/tftp.pcap     | Bin
 test/config.py                                     |   1 +
 test/subprocesstest.py                             |  19 +++--
 test/suite_clopts.py                               |   1 +
 test/suite_dfilter/__init__.py                     |  14 ++++
 test/suite_dfilter/dfiltertest.py                  |  36 ++++++++++
 .../suite_dfilter/group_bytes_ether.py             |   4 +-
 .../suite_dfilter/group_bytes_ipv6.py              |   4 +-
 .../suite_dfilter/group_bytes_type.py              |   5 +-
 .../suite_dfilter/group_double.py                  |   5 +-
 .../suite_dfilter/group_integer.py                 |   5 +-
 .../suite_dfilter/group_integer_1byte.py           |   4 +-
 .../ipv4.py => test/suite_dfilter/group_ipv4.py    |   4 +-
 .../suite_dfilter/group_membership.py              |   5 +-
 .../suite_dfilter/group_range_method.py            |   5 +-
 .../suite_dfilter/group_scanner.py                 |   5 +-
 .../suite_dfilter/group_string_type.py             |   5 +-
 .../suite_dfilter/group_stringz.py                 |   5 +-
 .../suite_dfilter/group_time_relative.py           |   5 +-
 .../suite_dfilter/group_time_type.py               |  10 +--
 .../tvb.py => test/suite_dfilter/group_tvb.py      |   5 +-
 .../suite_dfilter/group_uint64.py                  |   5 +-
 test/test.py                                       |   2 +-
 tools/dfilter-test.py                              |  35 ---------
 tools/dftestlib/__init__.py                        |   4 --
 tools/dftestlib/dftest.py                          |  79 ---------------------
 tools/dftestlib/util.py                            |  34 ---------
 33 files changed, 100 insertions(+), 206 deletions(-)
 rename {tools/dftestfiles => test/captures}/arp.pcap (100%)
 rename {tools/dftestfiles => test/captures}/http.pcap (100%)
 rename {tools/dftestfiles => test/captures}/ipv6.pcap (100%)
 rename {tools/dftestfiles => test/captures}/ipx_rip.pcap (100%)
 rename {tools/dftestfiles => test/captures}/nfs.pcap (100%)
 rename {tools/dftestfiles => test/captures}/ntp.pcap (100%)
 rename {tools/dftestfiles => test/captures}/tftp.pcap (100%)
 create mode 100644 test/suite_dfilter/__init__.py
 create mode 100644 test/suite_dfilter/dfiltertest.py
 rename tools/dftestlib/bytes_ether.py => test/suite_dfilter/group_bytes_ether.py (97%)
 rename tools/dftestlib/bytes_ipv6.py => test/suite_dfilter/group_bytes_ipv6.py (97%)
 rename tools/dftestlib/bytes_type.py => test/suite_dfilter/group_bytes_type.py (84%)
 rename tools/dftestlib/double.py => test/suite_dfilter/group_double.py (96%)
 rename tools/dftestlib/integer.py => test/suite_dfilter/group_integer.py (98%)
 rename tools/dftestlib/integer_1byte.py => test/suite_dfilter/group_integer_1byte.py (83%)
 rename tools/dftestlib/ipv4.py => test/suite_dfilter/group_ipv4.py (98%)
 rename tools/dftestlib/membership.py => test/suite_dfilter/group_membership.py (95%)
 rename tools/dftestlib/range_method.py => test/suite_dfilter/group_range_method.py (93%)
 rename tools/dftestlib/scanner.py => test/suite_dfilter/group_scanner.py (93%)
 rename tools/dftestlib/string_type.py => test/suite_dfilter/group_string_type.py (98%)
 rename tools/dftestlib/stringz.py => test/suite_dfilter/group_stringz.py (88%)
 rename tools/dftestlib/time_relative.py => test/suite_dfilter/group_time_relative.py (88%)
 rename tools/dftestlib/time_type.py => test/suite_dfilter/group_time_type.py (92%)
 rename tools/dftestlib/tvb.py => test/suite_dfilter/group_tvb.py (96%)
 rename tools/dftestlib/uint64.py => test/suite_dfilter/group_uint64.py (85%)
 delete mode 100755 tools/dfilter-test.py
 delete mode 100644 tools/dftestlib/__init__.py
 delete mode 100644 tools/dftestlib/dftest.py
 delete mode 100644 tools/dftestlib/util.py