mirror of
https://github.com/openglow-org/forgefirm.git
synced 2026-09-27 08:41:13 -07:00
11 lines
342 B
Bash
11 lines
342 B
Bash
#!/bin/sh
|
|
# Copyright 2026 514 LLC d/b/a OpenGlow
|
|
# Written by Scott Wiederhold
|
|
# https://community.openglow.org
|
|
# SPDX-License-Identifier: MIT
|
|
# The host test of the fixture's policy: needs only a C compiler.
|
|
set -e
|
|
cd "$(dirname "$0")"
|
|
${CC:-cc} -std=c11 -Wall -Wextra -Werror -o policy_test policy_test.c ../main/policy.c
|
|
./policy_test
|