]> rtime.felk.cvut.cz Git - omk.git/blobdiff - tests/headers/generated/runtest
Added test for 'x' in generated headers.
[omk.git] / tests / headers / generated / runtest
index 0a612c45a4e411a191f863ec8f238b93e08a4b20..2576a1652b9068fd764dbeac93b1478adee4905f 100755 (executable)
@@ -16,3 +16,13 @@ LC=$(find _build -wholename '*/lincan/lincan_config.h')
 test -f "$LC" || canttest "Can't find the produced local config"
 grep -Fv "/* config file:" $LC | diff -u correct/lincan_config.h - || error "Local config differs"
 
+TLC=$(find _build -name 'toplevel_config.h')
+test -f "$TLC" || canttest "Can't find the produced local config"
+grep -Fv "/* config file:" $TLC | diff -u correct/toplevel_config.h - || error "Toplevel local config differs"
+
+stat -c '%z' $LC > stat.log1
+sleep 1
+touch config.omk-default
+make
+stat -c '%z' $LC > stat.log2
+diff stat.log1 stat.log2 || error "Generated config changed without without reason"