index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
unittests
/
Support
/
Path.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Add a function to MD5 a file's contents.
Zachary Turner
2017-03-20
1
-0
/
+14
*
SmallString doesn't have implicit conversion from const char*.
Zachary Turner
2017-03-17
1
-2
/
+2
*
Don't rely on an implicit std::tuple constructor.
Zachary Turner
2017-03-17
1
-4
/
+9
*
Fix unit test.
Zachary Turner
2017-03-16
1
-1
/
+1
*
[Support] Support both Windows and Posix paths on both platforms.
Zachary Turner
2017-03-16
1
-87
/
+68
*
[Support] Add support for getting file system permissions on Windows and impl...
James Henderson
2017-03-16
1
-0
/
+171
*
[Support] Make the SystemZ bot happy by using make_error_code.
Juergen Ributzka
2017-03-14
1
-1
/
+2
*
[Support] Follow-up for "Test directory iterators and recursive directory ite...
Juergen Ributzka
2017-03-13
1
-1
/
+1
*
[Support] Test directory iterators and recursive directory iterators with bro...
Juergen Ributzka
2017-03-13
1
-0
/
+78
*
Reverting r297617 because it broke some bots:
Aaron Ballman
2017-03-13
1
-182
/
+4
*
Add support for getting file system permissions and implement sys::fs::permis...
Aaron Ballman
2017-03-13
1
-4
/
+182
*
Fix test failure when Home directory cannot be found.
Zachary Turner
2017-03-10
1
-9
/
+8
*
Add llvm::sys::fs::real_path.
Zachary Turner
2017-03-10
1
-0
/
+36
*
[Support] Add llvm::sys::fs::remove_directories.
Zachary Turner
2017-03-08
1
-0
/
+33
*
[Support] Remove unit test for fs::is_local
Jonas Hahnfeld
2017-03-08
1
-55
/
+0
*
Process tilde in llvm::sys::path::native
Serge Pavlov
2017-03-01
1
-0
/
+27
*
[Support] XFAIL is_local for mips
Simon Dardis
2017-02-22
1
-0
/
+36
*
[Support] Add a function to check if a file resides locally.
Zachary Turner
2017-02-21
1
-0
/
+22
*
Fix fs::set_current_path unit test
Pavel Labath
2017-01-24
1
-1
/
+5
*
[Support] Add sys::fs::set_current_path() (aka chdir)
Pavel Labath
2017-01-24
1
-0
/
+19
*
[Support] remove_dots: Remove windows test.
Benjamin Kramer
2016-10-17
1
-2
/
+0
*
[Support] remove_dots: Remove .. from absolute paths.
Benjamin Kramer
2016-10-17
1
-0
/
+4
*
unittests: Explicitly ignore some return values in crash tests
Justin Bogner
2016-10-16
1
-16
/
+18
*
Do not delete leading ../ in remove_dots.
Eric Liu
2016-10-13
1
-0
/
+4
*
Fix a real temp file leak in FileOutputBuffer
Reid Kleckner
2016-09-02
1
-0
/
+2
*
Try to fix some temp file leaks in SupportTests, PR18335
Reid Kleckner
2016-09-02
1
-13
/
+27
*
Use the range variant of find instead of unpacking begin/end
David Majnemer
2016-08-11
1
-10
/
+10
*
Switch to using an API that handles non-ASCII paths appropriately on Windows.
Aaron Ballman
2016-06-21
1
-0
/
+26
*
Fix a relatively nasty bug with fs::getPathFromOpenFD() on Windows. The GetFi...
Aaron Ballman
2016-06-20
1
-0
/
+33
*
In openFileForRead, attempt to fetch the actual name of the file on disk -- i...
Taewook Oh
2016-06-13
1
-0
/
+57
*
Revert commit r271704, a patch that enables warnings for non-portable #includ...
Taewook Oh
2016-06-04
1
-57
/
+0
*
In openFileForRead, attempt to fetch the actual name of the file on disk -- i...
Taewook Oh
2016-06-03
1
-0
/
+57
*
[ThinLTO] Option to control path of distributed backend files
Teresa Johnson
2016-05-17
1
-0
/
+25
*
[Support][Unittests] Add unittest for recursive_directory_iterator::level()
Bruno Cardoso Lopes
2016-05-13
1
-0
/
+14
*
Unbreak building unit tests on Windows after r266595.
Nico Weber
2016-04-18
1
-0
/
+1
*
[Support] Fix an invalid character escaping in string literal (unittest).
Etienne Bergeron
2016-04-05
1
-1
/
+1
*
Fix a -Wsign-compare in Support Path unittests
Reid Kleckner
2016-02-10
1
-1
/
+1
*
Fix identify_magic() to check that a file that starts with MH_MAGIC is
Kevin Enderby
2016-01-26
1
-11
/
+19
*
Fix -Wunused-function in a non-Win32 build
David Blaikie
2015-11-17
1
-1
/
+1
*
[Support] Tweak path::system_temp_directory() on Windows.
Pawel Bylica
2015-11-17
1
-0
/
+70
*
Windows-specific test for sys::path::remove_dots.
Mike Aizatsky
2015-11-09
1
-0
/
+13
*
Moving FileManager::removeDotPaths to llvm::sys::path::remove_dots
Mike Aizatsky
2015-11-09
1
-0
/
+20
*
Revert r252366: [Support] Use GetTempDir to get the temporary dir path on Win...
Pawel Bylica
2015-11-06
1
-70
/
+0
*
[Support] Use GetTempDir to get the temporary dir path on Windows.
Pawel Bylica
2015-11-06
1
-0
/
+70
*
[Support] Extend sys::path with user_cache_directory function.
Pawel Bylica
2015-11-02
1
-0
/
+29
*
Fix path::home_directory() unit test.
Pawel Bylica
2015-10-16
1
-8
/
+12
*
SupportTests::HomeDirectory: Don't try tests when $HOME is undefined.
NAKAMURA Takumi
2015-10-16
1
-6
/
+9
*
Reformat.
NAKAMURA Takumi
2015-10-16
1
-1
/
+1
*
Use Windows Vista API to get the user's home directory
Pawel Bylica
2015-10-16
1
-9
/
+13
*
Make test resilient against windows path separators.
Benjamin Kramer
2015-10-05
1
-0
/
+1
[prev]
[next]