Skip to content
This repository was archived by the owner on Jul 22, 2023. It is now read-only.

Commit 9cc053f

Browse files
committed
removed pushd, temp reduced matrix size
1 parent 78ec4cc commit 9cc053f

File tree

2 files changed

+1
-34
lines changed

2 files changed

+1
-34
lines changed

.travis.yml

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -9,37 +9,6 @@ env:
99
- IOTC_BSP_TLS=mbedtls
1010
- IOTC_MAKETARGET=tests
1111
matrix:
12-
- PRESET=ARM_REL
13-
IOTC_MAKETARGET="utests"
14-
15-
- PRESET=ARM_REL_MIN
16-
IOTC_MAKETARGET="utests"
17-
18-
- PRESET=POSIX_DEV
19-
- PRESET=POSIX_DEV_MIN
20-
21-
- PRESET=POSIX_REL
22-
- PRESET=POSIX_REL_MIN
23-
24-
- PRESET=FREERTOS_POSIX_DEV
25-
BEFORE_SCRIPT_ACTION="make PRESET=FREERTOS_POSIX_REL prereqs"
26-
27-
- PRESET=FREERTOS_POSIX_REL
28-
BEFORE_SCRIPT_ACTION="make PRESET=FREERTOS_POSIX_REL prereqs"
29-
30-
# WOLFSSL Tests
31-
- PRESET=POSIX_DEV
32-
IOTC_BSP_TLS=wolfssl
33-
IOTC_BSP_CRYPTO=wolfssl
34-
35-
- PRESET=POSIX_REL
36-
IOTC_BSP_TLS=wolfssl
37-
IOTC_BSP_CRYPTO=wolfssl
38-
39-
- PRESET=POSIX_THREADING_REL
40-
# - PRESET=POSIX_UNSECURE_REL
41-
# IOTC_BSP_TLS=""
42-
4312
- TESTS=fuzztests
4413
PRESET=FUZZ_TESTS
4514
IOTC_BSP_TLS=""

make/mt-config/tests/mt-tests-fuzz.mk

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ IOTC_LIBFUZZER_DOWNLOAD_DIR := $(IOTC_CLANG_TOOLS_DIR)/fuzzer
3838
IOTC_LIBFUZZER := $(IOTC_LIBFUZZER_DOWNLOAD_DIR)/libFuzzer.a
3939

4040
$(IOTC_LIBFUZZER_DOWNLOAD_DIR):
41-
pushd $(IOTC_CLANG_TOOLS_DIR)
42-
svn export $(IOTC_LIBFUZZER_URL)
43-
popd
41+
(cd $(IOTC_CLANG_TOOLS_DIR) && svn export $(IOTC_LIBFUZZER_URL))
4442

4543
$(IOTC_LIBFUZZER): $(IOTC_LIBFUZZER_DOWNLOAD_DIR)
4644
(cd $(IOTC_LIBFUZZER_DOWNLOAD_DIR) && clang++ -c -g -O2 -lstdc++ -std=c++11 *.cpp -IFuzzer && ar ruv libFuzzer.a Fuzzer*.o)

0 commit comments

Comments
 (0)