2015-06-24 19:05:38 -07:00
|
|
|
#!/bin/bash
|
2015-06-25 08:17:23 -07:00
|
|
|
#
|
|
|
|
# Copyright 2015 Evan Huus <eapache@gmail.com>
|
|
|
|
#
|
|
|
|
# Wireshark - Network traffic analyzer
|
|
|
|
# By Gerald Combs <gerald@wireshark.org>
|
|
|
|
# Copyright 1998 Gerald Combs
|
|
|
|
#
|
2018-03-06 15:31:02 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2015-06-25 08:17:23 -07:00
|
|
|
|
2015-06-24 19:05:38 -07:00
|
|
|
set -e
|
|
|
|
|
2015-06-25 13:03:28 -07:00
|
|
|
grep -q WIRESHARK_RUN_FROM_BUILD_DIRECTORY ~/.profile || echo "export WIRESHARK_RUN_FROM_BUILD_DIRECTORY=1" >> ~/.profile
|
2015-06-25 23:48:48 -07:00
|
|
|
grep -q WIRESHARK_BIN_DIR ~/.profile || echo "export WIRESHARK_BIN_DIR=~/build/run" >> ~/.profile
|
2015-06-24 19:05:38 -07:00
|
|
|
mkdir -p build
|
|
|
|
cd build
|
2018-08-30 23:11:02 +01:00
|
|
|
cmake -DENABLE_CCACHE=ON ../wireshark
|
2019-09-20 23:03:31 +01:00
|
|
|
make -j4
|
|
|
|
make test-programs
|
2018-08-30 21:58:16 +01:00
|
|
|
make test
|