mirror of
https://github.com/AmbiML/sparrow-kata-full.git
synced 2025-08-22 15:05:38 +00:00
11 lines
302 B
Bash
Executable File
11 lines
302 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Quick and dirty script to test the pure C module the UART driver depends on.
|
|
# This can be run as needed with the development machine gcc.
|
|
|
|
TEST_BINARY=test_circular_buffer
|
|
|
|
cc -o $TEST_BINARY -Iinclude src/circular_buffer.c test/circular_buffer_test.c
|
|
./$TEST_BINARY
|
|
rm -f ./$TEST_BINARY
|