commit | d99acabff1dff799107f625dbf987984c06dd84e | [log] [tgz] |
---|---|---|
author | Christophe Favergeon <Christophe.Favergeon@arm.com> | Mon May 11 13:40:39 2020 +0200 |
committer | Christophe Favergeon <Christophe.Favergeon@arm.com> | Mon May 11 13:47:10 2020 +0200 |
tree | 3b9a8b3b20c1c85d9522f69e1d1af99c1b2e8709 | |
parent | 346e992cab40d4e670c5a4c1ab6c63eb47440077 [diff] [blame] |
CMSIS-DSP: Update link script for test framework.
diff --git a/CMSIS/DSP/Testing/main.cpp b/CMSIS/DSP/Testing/main.cpp index 4999047..559b1c2 100644 --- a/CMSIS/DSP/Testing/main.cpp +++ b/CMSIS/DSP/Testing/main.cpp
@@ -1,8 +1,10 @@ #include <stdio.h> -extern int testmain(); +#include "arm_math.h" +extern int testmain(const char *); +extern "C" const char *patternData; int main() { - return(testmain()); + return(testmain(patternData)); }