Skip to content

Commit b9b9eba

Browse files
committed
Issue 108: Add new test application
Signed-off-by: Rahul Krishna <[email protected]>
1 parent 00b2933 commit b9b9eba

File tree

1,892 files changed

+5
-635900
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,892 files changed

+5
-635900
lines changed

tests/conftest.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
import os
2222
import json
23+
from pdb import set_trace
2324
import shutil
2425
import zipfile
2526
from pathlib import Path
@@ -170,15 +171,16 @@ def test_fixture_binutils():
170171

171172
# Access the test data path
172173
test_data_path = config["tool"]["cldk"]["testing"]["sample-c-application"]
173-
filename = Path(test_data_path).absolute() / "binutils-2.7.zip"
174+
filename = Path(test_data_path).absolute() / "binutils.zip"
174175

175176
# Extract the zip file to the test data path
176177
with zipfile.ZipFile(filename, "r") as zip_ref:
177-
zip_ref.extractall(test_data_path + "binutils-2.7")
178+
zip_ref.extractall(test_data_path)
178179

179180
# ------------------------------ [ TEST FIXTURE ]------------------------------
180181
# Binutils sample application path
181-
yield Path(test_data_path) / "binutils-2.7"
182+
yield Path(test_data_path) / "binutils"
183+
set_trace()
182184

183185
# ---------------------------------[ TEARDOWN ]--------------------------------
184186
# Remove the binutils sample application that was downloaded for testing
-5.16 MB
Binary file not shown.

tests/resources/c/application/binutils-2.7/binutils-2.7/COPYING

Lines changed: 0 additions & 339 deletions
This file was deleted.

tests/resources/c/application/binutils-2.7/binutils-2.7/COPYING.LIB

Lines changed: 0 additions & 481 deletions
This file was deleted.

0 commit comments

Comments
 (0)