Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cpp_introduction
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cp1_ws19
cpp_introduction
Commits
19729387
Commit
19729387
authored
5 years ago
by
Kevin Höllring
Browse files
Options
Downloads
Patches
Plain Diff
Fix tests not initializing tmp directory
parent
5b2f9f5e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#30790
failed
5 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+5
-5
5 additions, 5 deletions
Makefile
with
5 additions
and
5 deletions
Makefile
+
5
−
5
View file @
19729387
...
...
@@ -62,27 +62,27 @@ $(TARGET_DIR)/%: $(BUILD_DIR)/%.o
TASK1_EXE
=
$(
TARGET_DIR
)
/task_1
test_task1
:
build
test_task1
:
init_test
build
$(
TASK1_EXE
)
<
$(
INP_DIR
)
/task_1_sample.in
>
$(
TMP_DIR
)
/task_1_sample.out
diff
-us
$(
TMP_DIR
)
/task_1_sample.out
$(
OUT_DIR
)
/task_1_sample.out
TASK2_EXE
=
$(
TARGET_DIR
)
/task_2
test_task2
:
build
test_task2
:
init_test
build
$(
TASK2_EXE
)
<
$(
INP_DIR
)
/task_2_sample.in
>
$(
TMP_DIR
)
/task_2_sample.out
diff
-us
$(
TMP_DIR
)
/task_2_sample.out
$(
OUT_DIR
)
/task_2_sample.out
TASK3_EXE
=
$(
TARGET_DIR
)
/task_3
test_task3
:
build
test_task3
:
init_test
build
$(
TASK3_EXE
)
<
$(
INP_DIR
)
/task_3_sample.in
>
$(
TMP_DIR
)
/task_3_sample.out
diff
-us
$(
TMP_DIR
)
/task_3_sample.out
$(
OUT_DIR
)
/task_3_sample.out
TASK4_EXE
=
$(
TARGET_DIR
)
/task_4
test_task4
:
build
test_task4
:
init_test
build
$(
TASK4_EXE
)
<
$(
INP_DIR
)
/task_4_sample.in
>
$(
TMP_DIR
)
/task_4_sample.out
diff
-us
$(
TMP_DIR
)
/task_4_sample.out
$(
OUT_DIR
)
/task_4_sample.out
TASK5_EXE
=
$(
TARGET_DIR
)
/task_5
test_task5
:
build
test_task5
:
init_test
build
$(
TASK5_EXE
)
<
$(
INP_DIR
)
/task_5_sample.in
>
$(
TMP_DIR
)
/task_5_sample.out
diff
-us
$(
TMP_DIR
)
/task_5_sample.out
$(
OUT_DIR
)
/task_5_sample.out
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment