Rename psa_helpers.function to psa_crypto_helpers.h
This file isn't like the other .function files: it isn't concatenated
by a separate preprocessing script, but included via C preprocessing.
Rename this file to .h. This isn't a normal C header, because it
defines auxiliary functions. But the functions aren't big and we only
have one compilation unit per executable, so this is good enough for
what we're doing.
diff --git a/tests/Makefile b/tests/Makefile
index bc88e82..e2a32a1 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -104,7 +104,7 @@
echo " CC $<"
$(CC) $(LOCAL_CFLAGS) $(CFLAGS) $< $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@
-$(filter test_suite_psa_crypto%, $(BINARIES)): psa_helpers.function
+$(filter test_suite_psa_crypto%, $(BINARIES)): psa_crypto_helpers.h
clean:
ifndef WINDOWS