summaryrefslogtreecommitdiffstats
path: root/lldb/test/expression_command/call-function/TestCallStdStringFunction.py
Commit message (Collapse)AuthorAgeFilesLines
* Expected failure printing std::string::c_str() due to flubbing the typedef ↵Jim Ingham2014-03-191-6/+4
| | | | | | lookup. llvm-svn: 204206
* Massive test suite cleanup to stop everyone from manually having to compute ↵Greg Clayton2013-12-101-1/+1
| | | | | | | | | | "mydir" inside each test case. This has led to many test suite failures because of copy and paste where new test cases were based off of other test cases and the "mydir" variable wasn't updated. Now you can call your superclasses "compute_mydir()" function with "__file__" as the sole argument and the relative path will be computed for you. llvm-svn: 196985
* Annotate test that fails on the FreeBSD buildbotEd Maste2013-11-211-0/+1
| | | | | | llvm.org/pr17807 llvm-svn: 195361
* Expression evaluation works on FreeBSD after switch to MCJITEd Maste2013-08-301-1/+0
| | | | | | http://www.llvm.org/pr16697 llvm-svn: 189668
* Mark additional icc test failures as expected fail.Matt Kopec2013-08-021-0/+1
| | | | llvm-svn: 187660
* tests: Mark expected FreeBSD failures due to pr16697Ed Maste2013-07-241-0/+1
| | | | | | | These fail due to: error: Expression can't be run, because there is no JIT compiled function llvm-svn: 187072
* Clean up linux test decorators and add links to known bugsDaniel Malea2013-05-151-1/+1
| | | | | | | | | - s/skipOnLinux/skipIfLinux/ to match style of every other decorator - linkify bugizilla/PR numbers in comments No intended change in functionality. llvm-svn: 181913
* Update TestCallStdStringFunction to expected fail for gcc and account for ↵Matt Kopec2013-03-011-2/+3
| | | | | | | | multiple breakpoint locations. Patch from Ashok Thirumurthi. llvm-svn: 176357
* Skip tests that assert on Linux in ↵Daniel Malea2013-02-131-1/+1
| | | | | | | | RecordLayoutBuilder::updateExternalFieldOffset() - Filed bugzilla PR-15256 llvm-svn: 175065
* Mark expected failures on Linux (due to bugzilla #14437)Daniel Malea2012-11-271-0/+1
| | | | llvm-svn: 168727
* Linux test case fixesDaniel Malea2012-11-211-1/+1
| | | | | | | | - missing includes in cpp test programs - mismatched dwarf/dsym test cases - make "com.apple.main-thread" expected string conditional on darwin platform llvm-svn: 168452
* Reverting unwanted changes to the test suiteEnrico Granata2012-10-241-1/+1
| | | | llvm-svn: 166627
* Reverting the changes to Scalar since this class needs to follow C rules for ↵Enrico Granata2012-10-241-1/+1
| | | | | | type promotion llvm-svn: 166626
* Fix all the test case breakages caused by folks writing tests all over the ↵Jim Ingham2012-09-221-4/+1
| | | | | | | | place that depended explicitly on the output of "break set". Please don't do this sort of thing!!!!! llvm-svn: 164433
* Removing the @expectedFailurei386 decorator from test cases that now work as ↵Enrico Granata2012-04-241-2/+0
| | | | | | a result of the latest changes to Value.cpp llvm-svn: 155419
* Add expected failure decorators for test cases which are failing for i386 ↵Johnny Chen2012-04-191-0/+2
| | | | | | | | architecture. Plus fix some test cases to skip/succeed for i386. llvm-svn: 155087
* Add a new option to the test driver, -N dsym or -N dwarf, in order to ↵Johnny Chen2012-04-061-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exclude tests decorated with either @dsym_test or @dwarf_test to be executed during the testsuite run. There are still lots of Test*.py files which have not been decorated with the new decorator. An example: # From TestMyFirstWatchpoint.py -> class HelloWatchpointTestCase(TestBase): mydir = os.path.join("functionalities", "watchpoint", "hello_watchpoint") @dsym_test def test_hello_watchpoint_with_dsym_using_watchpoint_set(self): """Test a simple sequence of watchpoint creation and watchpoint hit.""" self.buildDsym(dictionary=self.d) self.setTearDownCleanup(dictionary=self.d) self.hello_watchpoint() @dwarf_test def test_hello_watchpoint_with_dwarf_using_watchpoint_set(self): """Test a simple sequence of watchpoint creation and watchpoint hit.""" self.buildDwarf(dictionary=self.d) self.setTearDownCleanup(dictionary=self.d) self.hello_watchpoint() # Invocation -> [17:50:14] johnny:/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -N dsym -v -p TestMyFirstWatchpoint.py LLDB build dir: /Volumes/data/lldb/svn/ToT/build/Debug LLDB-137 Path: /Volumes/data/lldb/svn/ToT URL: https://johnny@llvm.org/svn/llvm-project/lldb/trunk Repository Root: https://johnny@llvm.org/svn/llvm-project Repository UUID: 91177308-0d34-0410-b5e6-96231b3b80d8 Revision: 154133 Node Kind: directory Schedule: normal Last Changed Author: gclayton Last Changed Rev: 154109 Last Changed Date: 2012-04-05 10:43:02 -0700 (Thu, 05 Apr 2012) Session logs for test failures/errors/unexpected successes will go into directory '2012-04-05-17_50_49' Command invoked: python ./dotest.py -N dsym -v -p TestMyFirstWatchpoint.py compilers=['clang'] Configuration: arch=x86_64 compiler=clang ---------------------------------------------------------------------- Collected 2 tests 1: test_hello_watchpoint_with_dsym_using_watchpoint_set (TestMyFirstWatchpoint.HelloWatchpointTestCase) Test a simple sequence of watchpoint creation and watchpoint hit. ... skipped 'dsym tests' 2: test_hello_watchpoint_with_dwarf_using_watchpoint_set (TestMyFirstWatchpoint.HelloWatchpointTestCase) Test a simple sequence of watchpoint creation and watchpoint hit. ... ok ---------------------------------------------------------------------- Ran 2 tests in 1.138s OK (skipped=1) Session logs for test failures/errors/unexpected successes can be found in directory '2012-04-05-17_50_49' [17:50:50] johnny:/Volumes/data/lldb/svn/ToT/test $ llvm-svn: 154154
* Removed the @expectedFailure decorators from test cases. They have been ↵Johnny Chen2011-10-241-5/+3
| | | | | | fixed with the r142717 check-in. llvm-svn: 142823
* Add @expectedFailure for TestCallStdStringFunction.py (radar was filed) andJohnny Chen2011-06-281-2/+4
| | | | | | | remove @expectedFailure from TestObjCMethods.py's print_ivars_correctly() function (it has been passing for a while). llvm-svn: 134022
* Add radar info.Johnny Chen2011-05-191-0/+1
| | | | llvm-svn: 131681
* Add TestCallStdStringFunction.py which calls std::string member functions ↵Johnny Chen2011-05-191-0/+58
while stopped on a breakpoint. llvm-svn: 131680
OpenPOWER on IntegriCloud