-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add validation test for open2 callbacks
- Loading branch information
1 parent
5992a82
commit a36f503
Showing
3 changed files
with
434 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,4 @@ if(APPLE) | |
else() | ||
add_subdirectory(v5/CVE-2015-1386) | ||
endif() | ||
add_subdirectory(v5/stack_memory_file) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
add_executable(test_stack_memory_file EXCLUDE_FROM_ALL test_stack_memory_file.c) | ||
target_link_libraries(test_stack_memory_file PUBLIC libunshield) | ||
|
||
add_test( | ||
NAME test_stack_memory_file | ||
COMMAND $<TARGET_FILE:test_stack_memory_file> | ||
WORKING_DIRECTORY ${TESTS_WORKING_DIRECTORY} | ||
) |
Oops, something went wrong.