summaryrefslogtreecommitdiffstats
path: root/base/data
Commit message (Collapse)AuthorAgeFilesLines
* Add whitespace so parser doesn't get confused.eroman@chromium.org2009-08-171-3/+3
| | | | | | Review URL: http://codereview.chromium.org/172056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23560 0039d316-1c4b-4281-b951-d872f2087c98
* Add UMR for PrependInteger to exceptions list for base_unittests.exe.ericroman@google.com2009-08-141-0/+14
| | | | | | | | | This purify filter is already in the unit_tests.exe_UMR_flakey.txt file, so this is just bringing that hack to base. BUG=http://crbug.com/18795 Review URL: http://codereview.chromium.org/165540 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23441 0039d316-1c4b-4281-b951-d872f2087c98
* Use platform-appropriate newlines in JSON output.mark@chromium.org2009-06-265-0/+11
| | | | | | | | BUG=15462 TEST=base_unittests, unit_tests, check newlines in bookmarks file Review URL: http://codereview.chromium.org/147220 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19418 0039d316-1c4b-4281-b951-d872f2087c98
* Blacklist test that crashes occasionally under Valgrind (and Purify).dkegel@google.com2009-05-071-0/+4
| | | | | | Review URL: http://codereview.chromium.org/115101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15581 0039d316-1c4b-4281-b951-d872f2087c98
* Disable TimerTest.RepeatingTimer_Cancel under Valgrindnirnimesh@chromium.org2009-04-241-1/+2
| | | | | | Review URL: http://codereview.chromium.org/93003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14422 0039d316-1c4b-4281-b951-d872f2087c98
* Disable TimerTest.RepeatingTimer the suspected test in base_unittests whichnirnimesh@chromium.org2009-04-151-0/+5
| | | | | | | | hangs under Valgrind on Mac. Review URL: http://codereview.chromium.org/73054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13791 0039d316-1c4b-4281-b951-d872f2087c98
* base_unittests.exe is still timing out in the testwtc@chromium.org2009-04-151-0/+3
| | | | | | | | | | | SignatureVerifierTest.BasicTest on the Purify bot, so we still need to disable this test. R=erikkay BUG=10031 Review URL: http://codereview.chromium.org/67172 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13754 0039d316-1c4b-4281-b951-d872f2087c98
* Disable the negative test cases in the testwtc@chromium.org2009-04-151-3/+0
| | | | | | | | | | | SignatureVerifierTest.BasicTest when running inside Purify because Purify disables digital signature verification. R=erikkay BUG=10031 Review URL: http://codereview.chromium.org/69010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13724 0039d316-1c4b-4281-b951-d872f2087c98
* Disables the test SignatureVerifierTest.BasicTest on the purify bot assky@chromium.org2009-04-131-0/+3
| | | | | | | | | | | | | it's either crashing or hanging server. I've filed bug 10031 to track this. BUG=10031 TEST=none TBR=erikkay Review URL: http://codereview.chromium.org/67081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13594 0039d316-1c4b-4281-b951-d872f2087c98
* Skip WatchdogTest.AlarmTest under Valgrind to avoid five-minute hang.dkegel@google.com2009-03-231-0/+2
| | | | | | | | See http://crbug.com/9194 Review URL: http://codereview.chromium.org/52025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12312 0039d316-1c4b-4281-b951-d872f2087c98
* Also add ObserverListThreadSafeTest.CrossThreadNotifications to ignore list.erikkay@google.com2009-02-071-0/+1
| | | | | | | | BUG=7477 Review URL: http://codereview.chromium.org/20157 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9367 0039d316-1c4b-4281-b951-d872f2087c98
* Add ObserverListThreadSafeTest.CrossThreadObserver to skipped tests.erikkay@google.com2009-02-071-0/+3
| | | | | | | | BUG=7477 Review URL: http://codereview.chromium.org/20152 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9363 0039d316-1c4b-4281-b951-d872f2087c98
* Add an exception for a flakey error in DirectoryWatcherTesterikkay@google.com2009-02-061-0/+10
| | | | | | | | | BUG=6051 TBR=darin Review URL: http://codereview.chromium.org/21151 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9361 0039d316-1c4b-4281-b951-d872f2087c98
* Disable all of ScopedTempDir tests, since the next one crashed as well.erikkay@google.com2009-02-051-1/+1
| | | | | | | | | | TBR=ojan BUG=7412 Review URL: http://codereview.chromium.org/21068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9201 0039d316-1c4b-4281-b951-d872f2087c98
* Disable ScopedTempDir.FullPath since it's crashing.erikkay@google.com2009-02-051-0/+4
| | | | | | | | | BUG=7412 TBR=ojan Review URL: http://codereview.chromium.org/20068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9197 0039d316-1c4b-4281-b951-d872f2087c98
* Move the vector canvas unit test data to the skia/ext directory. It wasn'tbrettw@chromium.org2009-01-0884-0/+0
| | | | | | | | | | | trivial to move the directory the way the test code was laid out (since we now add two levels) so I refactored it a bit to get rid of the base class (which wasn't actually used for anything useful). BUG=5016 Review URL: http://codereview.chromium.org/16550 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7756 0039d316-1c4b-4281-b951-d872f2087c98
* Data pack file reader and unit test, used for resources on Linux.evan@chromium.org2009-01-081-0/+0
| | | | | | | | | See http://dev.chromium.org/developers/design-documents/linuxresourcesandlocalizedstrings for more details. Review URL: http://codereview.chromium.org/17253 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7751 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline a bunch of vector canvas unit tests for the changes to Skia.brettw@google.com2008-12-1214-0/+0
| | | | | | Review URL: http://codereview.chromium.org/14078 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6930 0039d316-1c4b-4281-b951-d872f2087c98
* Add base to the repository.initial.commit2008-07-26104-0/+232
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8 0039d316-1c4b-4281-b951-d872f2087c98