aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | am 72714e0f: am 51f06ecc: Merge "Split executeShTest into two parts so that ↵Dan Albert2015-01-091-13/+18
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | it can be better leveraged by libc++" * commit '72714e0f8a3c209461d46551ebcf111e3f35ba32': Split executeShTest into two parts so that it can be better leveraged by libc++
| * | | am 51f06ecc: Merge "Split executeShTest into two parts so that it can be ↵Dan Albert2015-01-091-13/+18
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | better leveraged by libc++" * commit '51f06ecc5d0f71448146f98905b1796ae88d28da': Split executeShTest into two parts so that it can be better leveraged by libc++
| | * | Merge "Split executeShTest into two parts so that it can be better leveraged ↵Dan Albert2015-01-081-13/+18
| | |\ \ | | | |/ | | | | | | | | by libc++"
| | | * Split executeShTest into two parts so that it can be better leveraged by libc++Eric Fiselier2015-01-081-13/+18
| | | | | | | | | | | | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224672 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 2bea59bd02fe2a448314dfba205cd748a66ac6b9)
* | | | am 9cf8d9ca: am f41cd32a: Merge "[LIT] Add JSONMetricValue type to wrap ↵Dan Albert2015-01-091-0/+36
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | types supported by the json encoder." * commit '9cf8d9ca5aef24403867b7154f369cc831739178': [LIT] Add JSONMetricValue type to wrap types supported by the json encoder.
| * | | am f41cd32a: Merge "[LIT] Add JSONMetricValue type to wrap types supported ↵Dan Albert2015-01-091-0/+36
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | by the json encoder." * commit 'f41cd32af0994358ae9f3acca23c0354de5b3f0d': [LIT] Add JSONMetricValue type to wrap types supported by the json encoder.
| | * | Merge "[LIT] Add JSONMetricValue type to wrap types supported by the json ↵Dan Albert2015-01-081-0/+36
| | |\ \ | | | |/ | | | | | | | | encoder."
| | | * [LIT] Add JSONMetricValue type to wrap types supported by the json encoder.Eric Fiselier2015-01-081-0/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: The following types can be encoded and decoded by the json library: `dict`, `list`, `tuple`, `str`, `unicode`, `int`, `long`, `float`, `bool`, `NoneType`. `JSONMetricValue` can be constructed with any of these types, and used as part of Test.Result. This patch also adds a toMetricValue function that converts a value into a MetricValue. Reviewers: ddunbar, EricWF Reviewed By: EricWF Subscribers: cfe-commits, llvm-commits Differential Revision: http://reviews.llvm.org/D6576 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224628 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 74430387cd6b1d0e3f89b604f747fa53fc3315b3)
* | | | am d5a8f8a9: am d74cfd3c: Merge "Now that we require a newer python, use the ↵Dan Albert2015-01-091-1/+1
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | new exception syntax." * commit 'd5a8f8a93ed662d830cd4cc57ef14d05838f6897': Now that we require a newer python, use the new exception syntax.
| * | | am d74cfd3c: Merge "Now that we require a newer python, use the new ↵Dan Albert2015-01-091-1/+1
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | exception syntax." * commit 'd74cfd3c1f507ab51b576e0d2ce80dc8906c2e8e': Now that we require a newer python, use the new exception syntax.
| | * | Merge "Now that we require a newer python, use the new exception syntax."Dan Albert2015-01-081-1/+1
| | |\ \ | | | |/
| | | * Now that we require a newer python, use the new exception syntax.Rafael Espindola2015-01-081-1/+1
| | | | | | | | | | | | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224130 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit fe6c7ee0f0e11a368d8c98db7e75d26c1c2b32e6)
* | | | am b78e4661: am f13bcf2b: Merge "Require python 2.7."Dan Albert2015-01-096-20/+18
|\ \ \ \ | |/ / / | | | | | | | | | | | | * commit 'b78e4661de92772bbe09e1f4bd8da54ee41f64e8': Require python 2.7.
| * | | am f13bcf2b: Merge "Require python 2.7."Dan Albert2015-01-096-20/+18
| |\ \ \ | | |/ / | | | | | | | | | | | | * commit 'f13bcf2b4eeafa087bd649070bd8ed0ded10eb2b': Require python 2.7.
| | * | Merge "Require python 2.7."Dan Albert2015-01-086-20/+18
| | |\ \ | | | |/
| | | * Require python 2.7.Rafael Espindola2015-01-086-20/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We were already requiring 2.5, which meant that people on old linux distros had to upgrade anyway. Requiring python 2.6 will make supporting 3.X easier as we can use the 3.X exception syntax. According to the discussion on llvmdev, there is not much value is requiring just 2.6, we may as well just require 2.7. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224129 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 708bc15ff07dc2fcee3a66988bfc5bc15b80eb5f)
* | | | am ce4c5fc5: am 51e2fa82: Merge "[LIT] Add support for `UNSUPPORTED` tag to ↵Dan Albert2015-01-092-19/+29
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | `TestRunner.parseIntegratedTestScript`" * commit 'ce4c5fc5adebc9960edec1d2161e23d06b2d8107': [LIT] Add support for `UNSUPPORTED` tag to `TestRunner.parseIntegratedTestScript`
| * | | am 51e2fa82: Merge "[LIT] Add support for `UNSUPPORTED` tag to ↵Dan Albert2015-01-092-19/+29
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | `TestRunner.parseIntegratedTestScript`" * commit '51e2fa825ba84f67cebe4c3d1c93bd2f94fb1318': [LIT] Add support for `UNSUPPORTED` tag to `TestRunner.parseIntegratedTestScript`
| | * | Merge "[LIT] Add support for `UNSUPPORTED` tag to ↵Dan Albert2015-01-082-19/+29
| | |\ \ | | | |/ | | | | | | | | `TestRunner.parseIntegratedTestScript`"
| | | * [LIT] Add support for `UNSUPPORTED` tag to ↵Eric Fiselier2015-01-082-19/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `TestRunner.parseIntegratedTestScript` Summary: This patch gives me just enough to leverage the existing functionality in `TestRunner` for use in `libc++` and `libc++abi` . It does the following: * Adds the `UNSUPPORTED` tag to `TestRunner.parseIntegratedTestScript`. * Allows `parseIntegratedTestScript` to return an empty script if a script is not required by the caller. Reviewers: ddunbar, EricWF Reviewed By: EricWF Subscribers: cfe-commits, llvm-commits Differential Revision: http://reviews.llvm.org/D6589 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223915 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit bd112609813171fad2eeb4ad5f7a9cd95fc78b2e)
* | | | am 4a6ac124: am 70fd1f24: Merge "lit: Don\'t use python 2.6 features"Dan Albert2015-01-091-1/+1
|\ \ \ \ | |/ / / | | | | | | | | | | | | * commit '4a6ac12444cc5c7b0a8fe1c2909fb78002cea488': lit: Don't use python 2.6 features
| * | | am 70fd1f24: Merge "lit: Don\'t use python 2.6 features"Dan Albert2015-01-091-1/+1
| |\ \ \ | | |/ / | | | | | | | | | | | | * commit '70fd1f24656a2a0f9ea114b4a780fe5d381de68d': lit: Don't use python 2.6 features
| | * | Merge "lit: Don't use python 2.6 features"Dan Albert2015-01-081-1/+1
| | |\ \ | | | |/
| | | * lit: Don't use python 2.6 featuresDavid Majnemer2015-01-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | LLVM supports python 2.5, this fixes a (somewhat) recent regression. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223626 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 726bd4160263609011b3a8168bde045203fd021b)
* | | | am 9bfc923a: am a3c7e9e1: Merge "Fix for xunit output to work around issue ↵Dan Albert2015-01-091-1/+1
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | in Jenkins when tests are at the root level" * commit '9bfc923ac66dfb3bb0a6725426e6616c032f9fbb': Fix for xunit output to work around issue in Jenkins when tests are at the root level
| * | | am a3c7e9e1: Merge "Fix for xunit output to work around issue in Jenkins ↵Dan Albert2015-01-091-1/+1
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | when tests are at the root level" * commit 'a3c7e9e11ece48c38dec9d9c645c24c608e62494': Fix for xunit output to work around issue in Jenkins when tests are at the root level
| | * | Merge "Fix for xunit output to work around issue in Jenkins when tests are ↵Dan Albert2015-01-081-1/+1
| | |\ \ | | | |/ | | | | | | | | at the root level"
| | | * Fix for xunit output to work around issue in Jenkins when tests are at the ↵Chris Matthews2015-01-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | root level git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223562 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit ab1837aef3d93a0bf2294aeaeb488c62e3d45535)
* | | | am bb284ab8: am 04092cf9: Merge "Fix corner cases in lit xunit for paths ↵Dan Albert2015-01-091-2/+9
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | with dots" * commit 'bb284ab8237de04beef0c9a7ae0fce37be62fc5a': Fix corner cases in lit xunit for paths with dots
| * | | am 04092cf9: Merge "Fix corner cases in lit xunit for paths with dots"Dan Albert2015-01-091-2/+9
| |\ \ \ | | |/ / | | | | | | | | | | | | * commit '04092cf98d875585f3b6ece0b7e71f2b3a2d3b97': Fix corner cases in lit xunit for paths with dots
| | * | Merge "Fix corner cases in lit xunit for paths with dots"Dan Albert2015-01-081-2/+9
| | |\ \ | | | |/
| | | * Fix corner cases in lit xunit for paths with dotsChris Matthews2015-01-081-2/+9
| | | | | | | | | | | | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223549 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 689f10d1b56f68fafd999debc86e0b58d2d5de80)
* | | | am 198dd1c6: am 2ee64e38: Merge "Add a test-case for lit xunit output"Dan Albert2015-01-091-0/+10
|\ \ \ \ | |/ / / | | | | | | | | | | | | * commit '198dd1c6891109876976549d55d6c74cd4a82f47': Add a test-case for lit xunit output
| * | | am 2ee64e38: Merge "Add a test-case for lit xunit output"Dan Albert2015-01-091-0/+10
| |\ \ \ | | |/ / | | | | | | | | | | | | * commit '2ee64e38ab63e8d94fcdbceba954b35c605bd83e': Add a test-case for lit xunit output
| | * | Merge "Add a test-case for lit xunit output"Dan Albert2015-01-081-0/+10
| | |\ \ | | | |/
| | | * Add a test-case for lit xunit outputChris Matthews2015-01-081-0/+10
| | | | | | | | | | | | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223307 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 0baca9564c9df7b06645f71abdda0fe3090f46a6)
* | | | am d8993195: am 51670790: Merge "Don\'t allow test-suite names with . in ↵Dan Albert2015-01-092-6/+8
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | them in xml output" * commit 'd89931958aead6c2ef893d994db57042e870c780': Don't allow test-suite names with . in them in xml output
| * | | am 51670790: Merge "Don\'t allow test-suite names with . in them in xml output"Dan Albert2015-01-092-6/+8
| |\ \ \ | | |/ / | | | | | | | | | | | | * commit '51670790ca5704c9dad0ff202ce905b0fea97f47': Don't allow test-suite names with . in them in xml output
| | * | Merge "Don't allow test-suite names with . in them in xml output"Dan Albert2015-01-082-6/+8
| | |\ \ | | | |/
| | | * Don't allow test-suite names with . in them in xml outputChris Matthews2015-01-082-6/+8
| | | | | | | | | | | | | | | | | | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223305 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit 06a1a5f256cabe6d20cf745cd93b389815c988a9)
* | | | am 23910ec0: am 2ce42da6: Merge "Give lit a --xunit-xml-output option for ↵Dan Albert2015-01-092-7/+55
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | saving results in xunit format" * commit '23910ec0b0880243bf3733504c8308b304a2bdd3': Give lit a --xunit-xml-output option for saving results in xunit format
| * | | am 2ce42da6: Merge "Give lit a --xunit-xml-output option for saving results ↵Dan Albert2015-01-092-7/+55
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | in xunit format" * commit '2ce42da685202318fca422680d51ed2f7f5f41a1': Give lit a --xunit-xml-output option for saving results in xunit format
| | * | Merge "Give lit a --xunit-xml-output option for saving results in xunit format"Dan Albert2015-01-082-7/+55
| | |\ \ | | | |/
| | | * Give lit a --xunit-xml-output option for saving results in xunit formatChris Matthews2015-01-082-7/+55
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | --xunit-xml-output saves test results to disk in JUnit's xml format. This will allow Jenkins to report the details of a lit run. Based on a patch by David Chisnall. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223163 91177308-0d34-0410-b5e6-96231b3b80d8 (cherry picked from commit dcedd15f58e7b76c2ee61c8030799c209104229b)
* | | am 33053845: am 00227471: Merge "Don\'t clobber LOCAL_CFLAGS_arm64 in ↵Tim Murray2015-01-051-1/+1
|\ \ \ | |/ / | | | | | | | | | | | | | | | llvm-device-build." * commit '3305384515fc8c4a1220cf4c0c868567ac1f1a69': Don't clobber LOCAL_CFLAGS_arm64 in llvm-device-build.
| * | am 00227471: Merge "Don\'t clobber LOCAL_CFLAGS_arm64 in llvm-device-build."Tim Murray2015-01-051-1/+1
| |\ \ | | |/ | | | | | | | | | * commit '00227471485a815abadf2cc8cd334c4e86f187f9': Don't clobber LOCAL_CFLAGS_arm64 in llvm-device-build.
| | * Merge "Don't clobber LOCAL_CFLAGS_arm64 in llvm-device-build."Tim Murray2015-01-051-1/+1
| | |\
| | | * Don't clobber LOCAL_CFLAGS_arm64 in llvm-device-build.Tim Murray2015-01-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | bug 18808781 Change-Id: Iabd483a8ec91a4bb6a21e4569c53f28271abdd22
* | | | am ae3219b6: am 1be85630: Merge "Add -fno-inline to LLVM device flags."Tim Murray2015-01-051-0/+4
|\ \ \ \ | |/ / / | | | | | | | | | | | | * commit 'ae3219b66f0195f920947d7aa36c49515f93a208': Add -fno-inline to LLVM device flags.
| * | | am 1be85630: Merge "Add -fno-inline to LLVM device flags."Tim Murray2015-01-051-0/+4
| |\ \ \ | | |/ / | | | | | | | | | | | | * commit '1be856302d996cbccf76d19bb651347dc2c8d04b': Add -fno-inline to LLVM device flags.