mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* restore .gitmodules * Revert "[TD-13408]<test>: move tests out" This reverts commitf80a4ca49f. * revertf80a4ca49f* immigrate file change from stand-alone repo to TDengine for 3.0 * remove tests repository for Jenkinsfile2 Co-authored-by: tangfangzhi <fztang@taosdata.com>
13 lines
399 B
Bash
13 lines
399 B
Bash
#!/bin/sh
|
|
|
|
echo -n "hello" > /tmp/normal
|
|
echo -n "" > /tmp/empty
|
|
dd if=/dev/zero bs=3584 of=/tmp/big count=1
|
|
|
|
rm -rf /tmp/sum_double.so /tmp/add_one.so
|
|
touch /tmp/normal
|
|
|
|
gcc -g -O0 -fPIC -shared sh/sum_double.c -o /tmp/sum_double.so
|
|
gcc -g -O0 -fPIC -shared sh/add_one.c -o /tmp/add_one.so
|
|
gcc -g -O0 -fPIC -shared sh/demo.c -o /tmp/demo.so
|
|
gcc -g -O0 -fPIC -shared sh/abs_max.c -o /tmp/abs_max.so
|