Rename build_system_tests to less-ambiguous test_build_system

Before it was unclear if we were building the system tests or testing
the build system.
This commit is contained in:
Angus Gratton
2016-08-25 11:55:47 +08:00
parent f54348ff83
commit 7458f9193b
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ test_build_system:
variables: variables:
IDF_PATH: "$CI_PROJECT_DIR" IDF_PATH: "$CI_PROJECT_DIR"
script: script:
- ./make/build_system_tests.sh - ./make/test_build_system.sh
push_master_to_github: push_master_to_github:
stage: deploy stage: deploy

View File

@@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# #
# Build system tests # Test the build system for basic consistency
# #
# Just a bash script that tests some likely make failure scenarios in a row # Just a bash script that tests some likely make failure scenarios in a row
# Creates its own test build directory under TMP and cleans it up when done. # Creates its own test build directory under TMP and cleans it up when done.