Skip to content

Commit

Permalink
Merge pull request #48 from per1234/move-tests
Browse files Browse the repository at this point in the history
Avoid tests being compiled by Arduino build system
  • Loading branch information
ivanseidel authored Mar 10, 2022
2 parents 90d2967 + 9a373f1 commit faf50ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ With a simple but powerful caching algorithm, you can get subsequent objects muc

## Tests

`cd` to this directory and run `g++ -std=c++14 tests.cpp -o tests && ./tests`
`cd` to this directory and run `g++ -std=c++14 extras/test/tests.cpp -o tests && ./tests`

-------------------------

Expand Down
2 changes: 1 addition & 1 deletion tests.cpp → extras/test/tests.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//g++ -std=c++14 tests.cpp -o tests && ./tests

#include "LinkedList.h"
#include "../../LinkedList.h"
#include <assert.h>
#include <iostream>

Expand Down

0 comments on commit faf50ce

Please sign in to comment.