aboutsummaryrefslogtreecommitdiff
path: root/tests/build
AgeCommit message (Collapse)AuthorFilesLines
2023-06-26Suppress -Wdangling-reference GCC 13 warningKaren Arutyunov1-0/+5
2023-06-26Suppress -Wunqualified-std-cast-call Clang 15 warningKaren Arutyunov1-0/+2
2021-07-08Also disable GCC -Wstringop-overread in testsBoris Kolpackov1-1/+2
2021-04-20Disable bunch of bogus GCC warningsBoris Kolpackov1-0/+2
2020-06-18Add env script pseudo-builtinKaren Arutyunov1-1/+0
Also disable C++ recipe tests when cross-testing.
2020-06-16Add metadata for exe{b}, including whether it is statically-linkedBoris Kolpackov1-1/+4
Use this information to omit ad hoc C++ recipe tests is testing statically- linked build system.
2020-02-07Drop copyright notice from source codeKaren Arutyunov2-2/+0
2019-10-07Adapt tests for building with Clang on WindowsKaren Arutyunov1-3/+3
2019-08-26Implement auto-import of development build2 buildBoris Kolpackov1-1/+4
2019-01-16Update copyright yearKaren Arutyunov2-2/+2
2018-12-03Suppress MSVC warnings at project levelBoris Kolpackov1-0/+6
2018-09-04Rename .test/test{} to .testscript/testscript{}Boris Kolpackov1-1/+1
2018-06-20Regularize .gitignore filesKaren Arutyunov1-0/+2
2018-05-19Update copyright yearKaren Arutyunov2-2/+2
2018-02-09Fix broken test (and few other things)Boris Kolpackov1-1/+1
2017-05-01Add hxx extension for headersKaren Arutyunov1-1/+1
2017-01-09Implement test.target variableBoris Kolpackov1-1/+4
The plan is to use it for the portable path conversions.
2017-01-05Update copyright yearBoris Kolpackov2-2/+2
2016-12-16Convert tests/ to subproject, initial work on cross-testing supportBoris Kolpackov3-0/+27
2015-06-18Add headers to buildfiles, move tests/build/ to tests/Boris Kolpackov19-268/+0
2015-06-18Move path and filesystem from build2 to libbutlBoris Kolpackov4-231/+2
2015-06-18Move prefix-map from build2 to libbutlBoris Kolpackov3-155/+1
2015-05-11Correct copyrightBoris Kolpackov4-4/+4
2015-04-28Add support for iteration over path componentsBoris Kolpackov1-0/+34
2015-03-03Use names() to handle include/source, support include of directoriesBoris Kolpackov3-0/+6
This gives us variable expansion and directory prefixes. Also, in include, if the path is a directory (either ends with / or has dir{} type), then we append 'buildfile'.
2015-03-02Cleanup to support clang compilationBoris Kolpackov1-6/+5
2015-02-26Support for scope parents, initial variable supportBoris Kolpackov1-21/+21
2015-02-24Make empty key to always be prefix in prefix_mapBoris Kolpackov1-7/+5
2015-02-23Clean up file namesBoris Kolpackov2-2/+2
2015-02-19Add support for sourcing/including buildfiles, print, dir{} aliasBoris Kolpackov14-0/+38
2015-01-20Diagnostic infrastructure revampBoris Kolpackov4-11/+12
2015-01-16Add support for directory prefixesBoris Kolpackov2-0/+8
For example: cxx{driver ../{foo bar}} cxx{driver} ../cxx{foo bar}
2015-01-16Implement rule chaining for cxx::linkBoris Kolpackov3-10/+3
2015-01-14Implement prefix_mapBoris Kolpackov2-0/+158
2015-01-08Implement tracing supportBoris Kolpackov2-0/+201
Also use to-relative path translation in diagnostics.
2014-12-18Initial support for loading dependency info from buildfilesBoris Kolpackov1-2/+10
Also a new iteration on the overall architecture. Now, for the first time, build can read the buildfile and build itself. g++-4.9 -std=c++14 -g -I.. -o bd bd.cxx algorithm.cxx scope.cxx parser.cxx lexer.cxx target.cxx prerequisite.cxx rule.cxx native.cxx cxx/target.cxx cxx/rule.cxx process.cxx timestamp.cxx path.cxx g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx ../../../build/parser.cxx ../../../build/scope.cxx ../../../build/target.cxx ../../../build/native.cxx ../../../build/prerequisite.cxx ../../../build/path.cxx ../../../build/timestamp.cxx
2014-12-15Parse directory scopesBoris Kolpackov2-11/+22
2014-12-12Initial buildfile parser implementationBoris Kolpackov2-1/+73
g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx ../../../build/parser.cxx && ./driver
2014-12-12Add test for lexerBoris Kolpackov1-0/+124
g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx && ./driver