aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/xcode/stdredirect
Commit message (Collapse)AuthorAge
* Remove unnecessary bashism.Gravatar Julio Merino2016-03-03
| | | | | | | | | The run_tests.sh script uses /bin/sh, not bash. From a cursory look, it seems that this script uses a single bash-specific feature so drop it in favor of the standard syntax. -- MOS_MIGRATED_REVID=116243391
* Add a bazel-srcs target to the top-level package containing all Bazel sourcesGravatar Damien Martin-Guillerez2016-02-29
| | | | | | | | This target include all non tests targets of Bazel to do integration tests of bootstrapping. -- MOS_MIGRATED_REVID=115830741
* Rationalize copyright headersGravatar Damien Martin-Guillerez2015-09-25
| | | | | | | | | | | The headers were modified with `find . -type f -exec 'sed' '-Ei' 's|Copyright 201([45]) Google|Copyright 201\1 The Bazel Authors|' '{}' ';'` And manual edit for not Google owned copyright. Because of the nature of ijar, I did not modified the header of file owned by Alan Donovan. The list of authors were extracted from the git log. It is missing older Google contributors that can be added on-demand. -- MOS_MIGRATED_REVID=103938715
* Fix up StdRedirect.c so it reports errors into CrashLogs and crashes instead ↵Gravatar Dave MacLachlan2015-08-11
| | | | | | | | | | | of just to system log which can be missed. Fix up update_binaries so that StdRedirect.dylib is built before testrunner, because at this time testrunner is bundling StdRedirect into its jar file and there testrunner could easily pick up older binaries. RELNOTES:none -- MOS_MIGRATED_REVID=100300804
* StdRedirect library for interposing iOSSimulator so we can redirect ↵Gravatar Googler2015-06-19
stdin,stdout,stderr. A full example of its usage is in RunTests.sh. -- MOS_MIGRATED_REVID=96319787