test: Add testcase for #1001

Refs: #1001
Change-Id: I3edd750108bd3f887af1f0afe3f2651f1243062b
This commit is contained in:
Ken Sato
2018-08-01 12:55:08 +09:00
committed by Masamichi Takagi
parent 786649d2a3
commit d4fa953975
12 changed files with 810 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
#include "./perf_tool.h"
int main(int argc, char **argv)
{
calc_task();
memory_task();
return 0;
}