From 7d21d3e7e1c95aec2b94f7eb78a8ed9c9e691fc0 Mon Sep 17 00:00:00 2001 From: David Reid Date: Mon, 10 Feb 2020 19:47:05 +1000 Subject: [PATCH] Stop version controlling test build scripts. --- tests/ma_build_tests_bsd | 8 -------- tests/ma_build_tests_emscripten.bat | 2 -- tests/ma_build_tests_linux | 11 ----------- tests/ma_build_tests_mac | 9 --------- tests/ma_build_tests_rpi | 9 --------- tests/ma_build_tests_win32.bat | 14 -------------- 6 files changed, 53 deletions(-) delete mode 100755 tests/ma_build_tests_bsd delete mode 100644 tests/ma_build_tests_emscripten.bat delete mode 100644 tests/ma_build_tests_linux delete mode 100755 tests/ma_build_tests_mac delete mode 100755 tests/ma_build_tests_rpi delete mode 100644 tests/ma_build_tests_win32.bat diff --git a/tests/ma_build_tests_bsd b/tests/ma_build_tests_bsd deleted file mode 100755 index bc6fff0e..00000000 --- a/tests/ma_build_tests_bsd +++ /dev/null @@ -1,8 +0,0 @@ -cc ma_test_0.c -o ./bin/ma_test_0 -Wall -lpthread -lm -c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -lpthread -lm - -cc ma_profiling.c -o ./bin/ma_profiling -Wall -lpthread -lm -c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -lpthread -lm - -cc ma_dithering.c -o ./bin/ma_dithering -Wall -lpthread -lm -c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -lpthread -lm diff --git a/tests/ma_build_tests_emscripten.bat b/tests/ma_build_tests_emscripten.bat deleted file mode 100644 index 942a27b6..00000000 --- a/tests/ma_build_tests_emscripten.bat +++ /dev/null @@ -1,2 +0,0 @@ -::emcc ./ma_test_0.c -o ./bin/ma_test_0_emscripten.html -s WASM=0 -Wall -emcc ./ma_duplex.c -o ./bin/ma_duplex.html -s WASM=0 -Wall \ No newline at end of file diff --git a/tests/ma_build_tests_linux b/tests/ma_build_tests_linux deleted file mode 100644 index 587b0c8e..00000000 --- a/tests/ma_build_tests_linux +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -cc ma_test_0.c -o ./bin/ma_test_0 -Wall -ldl -lpthread -lm -c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -ldl -lpthread -lm - -cc ma_profiling.c -o ./bin/ma_profiling -Wall -ldl -lpthread -lm -c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -ldl -lpthread -lm - -cc ma_dithering.c -o ./bin/ma_dithering -Wall -ldl -lpthread -lm -c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -ldl -lpthread -lm - -cc ma_duplex.c -o ./bin/ma_duplex -Wall -ldl -lpthread -lm diff --git a/tests/ma_build_tests_mac b/tests/ma_build_tests_mac deleted file mode 100755 index 6dd91343..00000000 --- a/tests/ma_build_tests_mac +++ /dev/null @@ -1,9 +0,0 @@ -cc ma_test_0.c -o ./bin/ma_test_0 -Wall -lpthread -lm -c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -lpthread -lm - -cc ma_profiling.c -o ./bin/ma_profiling -Wall -lpthread -lm -c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -lpthread -lm - -cc ma_dithering.c -o ./bin/ma_dithering -Wall -lpthread -lm -c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -lpthread -lm - diff --git a/tests/ma_build_tests_rpi b/tests/ma_build_tests_rpi deleted file mode 100755 index f848a39d..00000000 --- a/tests/ma_build_tests_rpi +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -cc ma_test_0.c -o ./bin/ma_test_0 -Wall -ldl -lpthread -lm -c++ ma_test_0.c -o ./bin/ma_test_0_cpp -Wall -ldl -lpthread -lm - -cc ma_profiling.c -o ./bin/ma_profiling -Wall -ldl -lpthread -lm -mfpu=neon -O2 -c++ ma_profiling.c -o ./bin/ma_profiling_cpp -Wall -ldl -lpthread -lm -mfpu=neon -O2 - -cc ma_dithering.c -o ./bin/ma_dithering -Wall -ldl -lpthread -lm -c++ ma_dithering.c -o ./bin/ma_dithering_cpp -Wall -ldl -lpthread -lm \ No newline at end of file diff --git a/tests/ma_build_tests_win32.bat b/tests/ma_build_tests_win32.bat deleted file mode 100644 index d905053e..00000000 --- a/tests/ma_build_tests_win32.bat +++ /dev/null @@ -1,14 +0,0 @@ -@echo off -SET c_compiler=gcc -SET cpp_compiler=g++ -SET options=-Wall -@echo on - -%c_compiler% ma_test_0.c -o ./bin/ma_test_0.exe %options% -%cpp_compiler% ma_test_0.cpp -o ./bin/ma_test_0_cpp.exe %options% - -%c_compiler% ma_profiling.c -o ./bin/ma_profiling.exe %options% -s -O2 -%cpp_compiler% ma_profiling.c -o ./bin/ma_profiling_cpp.exe %options% -s -O2 - -%c_compiler% ma_dithering.c -o ./bin/ma_dithering.exe %options% -%cpp_compiler% ma_dithering.c -o ./bin/ma_dithering_cpp.exe %options% \ No newline at end of file