diff options
author | Zachary Turner <zturner@google.com> | 2015-08-13 22:05:54 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-08-13 22:05:54 +0000 |
commit | 9ff56b2ec7f5fad9cee42d57bd47606a22d932f3 (patch) | |
tree | 8877c96a9e138b2624472455820279f9a4d7fad1 | |
parent | 56495d5b1f080a741b860303c282a83a73016086 (diff) | |
download | bcm5719-llvm-9ff56b2ec7f5fad9cee42d57bd47606a22d932f3.tar.gz bcm5719-llvm-9ff56b2ec7f5fad9cee42d57bd47606a22d932f3.zip |
Remove Unicode byte-order mark from python files.
This was caused by a bug in the PTVS source file editor, which has
since been fixed and awaiting a new release. For now people using
this editor need to remember to manually remove this before
committing a file.
llvm-svn: 244963
26 files changed, 26 insertions, 26 deletions
diff --git a/lldb/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py b/lldb/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py index 3d34ca84c87..545308b70ec 100644 --- a/lldb/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py +++ b/lldb/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py @@ -1,4 +1,4 @@ -""" +""" Test lldb watchpoint that uses '-s size' to watch a pointed location with size. """ diff --git a/lldb/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py b/lldb/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py index 16595a27c42..06821fc8157 100644 --- a/lldb/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py +++ b/lldb/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py @@ -1,4 +1,4 @@ -""" +""" Test that lldb watchpoint works for multiple threads. """ diff --git a/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py b/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py index 3d4ec50ab46..11583a501b5 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py @@ -1,4 +1,4 @@ -""" +""" Test watchpoint list, enable, disable, and delete commands. """ diff --git a/lldb/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py b/lldb/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py index 77128ef0ad1..92a3c1ba3c2 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py @@ -1,4 +1,4 @@ -"""Test that adding, deleting and modifying watchpoints sends the appropriate events.""" +"""Test that adding, deleting and modifying watchpoints sends the appropriate events.""" import os, time import unittest2 diff --git a/lldb/test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py b/lldb/test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py index 3c0449aec3e..77c8b2203a7 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py @@ -1,4 +1,4 @@ -""" +""" Test lldb watchpoint that uses 'watchpoint set -w write -s size' to watch a pointed location with size. """ diff --git a/lldb/test/python_api/watchpoint/TestSetWatchpoint.py b/lldb/test/python_api/watchpoint/TestSetWatchpoint.py index 3c6a8117a8c..1fd4d441ccd 100644 --- a/lldb/test/python_api/watchpoint/TestSetWatchpoint.py +++ b/lldb/test/python_api/watchpoint/TestSetWatchpoint.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBValue API to create a watchpoint for read_write of 'globl' var. """ diff --git a/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py b/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py index 7cab93a4c7c..c58f2fd3e88 100644 --- a/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py +++ b/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBWatchpoint API to set the ignore count. """ diff --git a/lldb/test/python_api/watchpoint/TestWatchpointIter.py b/lldb/test/python_api/watchpoint/TestWatchpointIter.py index f44ffc4d386..ea202a55b25 100644 --- a/lldb/test/python_api/watchpoint/TestWatchpointIter.py +++ b/lldb/test/python_api/watchpoint/TestWatchpointIter.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBTarget API to iterate on the watchpoint(s) for the target. """ diff --git a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py index 6474b395b31..d643c8c5ee4 100644 --- a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py +++ b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py @@ -1,4 +1,4 @@ -""" +""" Test watchpoint condition API. """ diff --git a/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py b/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py index 5088506a221..b6db8280c0e 100644 --- a/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py +++ b/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py @@ -1,4 +1,4 @@ -""" +""" Use lldb Python SBValue.WatchPointee() API to create a watchpoint for write of '*g_char_ptr'. """ diff --git a/lldb/test/tools/lldb-mi/TestMiFile.py b/lldb/test/tools/lldb-mi/TestMiFile.py index b7825038bc9..16add25b95b 100644 --- a/lldb/test/tools/lldb-mi/TestMiFile.py +++ b/lldb/test/tools/lldb-mi/TestMiFile.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi -file-xxx commands. """ diff --git a/lldb/test/tools/lldb-mi/TestMiLibraryLoaded.py b/lldb/test/tools/lldb-mi/TestMiLibraryLoaded.py index cf605e6ea81..bc46c716772 100644 --- a/lldb/test/tools/lldb-mi/TestMiLibraryLoaded.py +++ b/lldb/test/tools/lldb-mi/TestMiLibraryLoaded.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi =library-loaded notifications. """ diff --git a/lldb/test/tools/lldb-mi/TestMiPrompt.py b/lldb/test/tools/lldb-mi/TestMiPrompt.py index cc116d0d496..32ae53281e3 100644 --- a/lldb/test/tools/lldb-mi/TestMiPrompt.py +++ b/lldb/test/tools/lldb-mi/TestMiPrompt.py @@ -1,4 +1,4 @@ -""" +""" Test that the lldb-mi driver prints prompt properly. """ diff --git a/lldb/test/tools/lldb-mi/breakpoint/TestMiBreak.py b/lldb/test/tools/lldb-mi/breakpoint/TestMiBreak.py index 530d000cc75..c89e57539af 100644 --- a/lldb/test/tools/lldb-mi/breakpoint/TestMiBreak.py +++ b/lldb/test/tools/lldb-mi/breakpoint/TestMiBreak.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi -break-xxx commands. """ diff --git a/lldb/test/tools/lldb-mi/control/TestMiExec.py b/lldb/test/tools/lldb-mi/control/TestMiExec.py index 2818a910650..6f9a30638f6 100644 --- a/lldb/test/tools/lldb-mi/control/TestMiExec.py +++ b/lldb/test/tools/lldb-mi/control/TestMiExec.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi -exec-xxx commands. """ diff --git a/lldb/test/tools/lldb-mi/data/TestMiData.py b/lldb/test/tools/lldb-mi/data/TestMiData.py index 61c012b0b17..4aea485f758 100644 --- a/lldb/test/tools/lldb-mi/data/TestMiData.py +++ b/lldb/test/tools/lldb-mi/data/TestMiData.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi -data-xxx commands. """ diff --git a/lldb/test/tools/lldb-mi/interpreter/TestMiCliSupport.py b/lldb/test/tools/lldb-mi/interpreter/TestMiCliSupport.py index 69fea5ba19b..96de4425573 100644 --- a/lldb/test/tools/lldb-mi/interpreter/TestMiCliSupport.py +++ b/lldb/test/tools/lldb-mi/interpreter/TestMiCliSupport.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi can interpret CLI commands directly. """ diff --git a/lldb/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py b/lldb/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py index 5eda9cffc9d..ce277a85c44 100644 --- a/lldb/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py +++ b/lldb/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi -interpreter-exec command. """ diff --git a/lldb/test/tools/lldb-mi/signal/TestMiSignal.py b/lldb/test/tools/lldb-mi/signal/TestMiSignal.py index df42b2b7461..16532c8d13e 100644 --- a/lldb/test/tools/lldb-mi/signal/TestMiSignal.py +++ b/lldb/test/tools/lldb-mi/signal/TestMiSignal.py @@ -1,4 +1,4 @@ -""" +""" Test that the lldb-mi handles signals properly. """ diff --git a/lldb/test/tools/lldb-mi/stack/TestMiStack.py b/lldb/test/tools/lldb-mi/stack/TestMiStack.py index 5a0f87947d1..1410c25f709 100644 --- a/lldb/test/tools/lldb-mi/stack/TestMiStack.py +++ b/lldb/test/tools/lldb-mi/stack/TestMiStack.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi -stack-xxx commands. """ diff --git a/lldb/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py b/lldb/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py index 7aac4e846a6..fc732bd1940 100644 --- a/lldb/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py +++ b/lldb/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi startup options. """ diff --git a/lldb/test/tools/lldb-mi/symbol/TestMiSymbol.py b/lldb/test/tools/lldb-mi/symbol/TestMiSymbol.py index 6540f475460..cb8a3558bb2 100644 --- a/lldb/test/tools/lldb-mi/symbol/TestMiSymbol.py +++ b/lldb/test/tools/lldb-mi/symbol/TestMiSymbol.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi -symbol-xxx commands. """ diff --git a/lldb/test/tools/lldb-mi/syntax/TestMiSyntax.py b/lldb/test/tools/lldb-mi/syntax/TestMiSyntax.py index 2bcf0bf37e5..ffcf3fe05e2 100644 --- a/lldb/test/tools/lldb-mi/syntax/TestMiSyntax.py +++ b/lldb/test/tools/lldb-mi/syntax/TestMiSyntax.py @@ -1,4 +1,4 @@ -""" +""" Test that the lldb-mi driver understands MI command syntax. """ diff --git a/lldb/test/tools/lldb-mi/target/TestMiTarget.py b/lldb/test/tools/lldb-mi/target/TestMiTarget.py index 89ec6a6f077..a6bff66ddaa 100644 --- a/lldb/test/tools/lldb-mi/target/TestMiTarget.py +++ b/lldb/test/tools/lldb-mi/target/TestMiTarget.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi -target-xxx commands. """ diff --git a/lldb/test/tools/lldb-mi/variable/TestMiGdbSetShowPrint.py b/lldb/test/tools/lldb-mi/variable/TestMiGdbSetShowPrint.py index 059afc06f5f..3ed97e6a3fb 100644 --- a/lldb/test/tools/lldb-mi/variable/TestMiGdbSetShowPrint.py +++ b/lldb/test/tools/lldb-mi/variable/TestMiGdbSetShowPrint.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi -gdb-set and -gdb-show commands for 'print option-name'. """ diff --git a/lldb/test/tools/lldb-mi/variable/TestMiVar.py b/lldb/test/tools/lldb-mi/variable/TestMiVar.py index 454e0480f0d..1d537168a78 100644 --- a/lldb/test/tools/lldb-mi/variable/TestMiVar.py +++ b/lldb/test/tools/lldb-mi/variable/TestMiVar.py @@ -1,4 +1,4 @@ -""" +""" Test lldb-mi -var-xxx commands. """ |