Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Unified Diff: tools/lexer_generator/test/automata_test.py

Issue 168943004: Experimental parser: move tests into test dir (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/lexer_generator/term_test.py ('k') | tools/lexer_generator/test/code_generator_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/lexer_generator/test/automata_test.py
diff --git a/tools/lexer_generator/automata_test.py b/tools/lexer_generator/test/automata_test.py
similarity index 93%
rename from tools/lexer_generator/automata_test.py
rename to tools/lexer_generator/test/automata_test.py
index 2d2c22e1ca776cb100c4750ac5260d1bcef1fc40..8278480ea7a69eb76151fcba5593b181173b8f6d 100644
--- a/tools/lexer_generator/automata_test.py
+++ b/tools/lexer_generator/test/automata_test.py
@@ -26,12 +26,12 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import unittest
-from dot_utilities import *
-from automaton import Action
-from regex_parser import RegexParser
-from transition_keys import TransitionKey, KeyEncoding
-from nfa_builder import NfaBuilder
-from dfa import Dfa
+from lexer_generator.dot_utilities import *
+from lexer_generator.automaton import Action
+from lexer_generator.regex_parser import RegexParser
+from lexer_generator.transition_keys import TransitionKey, KeyEncoding
+from lexer_generator.nfa_builder import NfaBuilder
+from lexer_generator.dfa import Dfa
class AutomataTestCase(unittest.TestCase):
« no previous file with comments | « tools/lexer_generator/term_test.py ('k') | tools/lexer_generator/test/code_generator_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698