Lines Matching refs:make_script
243 script_helper.make_script(path, "__init__", "")
244 mods.append(script_helper.make_script(path, "mod",
280 script = script_helper.make_script(path, "test", "1 / 0")
299 script = script_helper.make_script(path, "test", "1 / 0")
314 script = script_helper.make_script(path, "test", "1 / 0")
335 script_helper.make_script(path, "test", "1 / 0")
341 script = script_helper.make_script(self.directory,
370 allowed_script = script_helper.make_script(allowed_path, "test_allowed", "a = 0")
371 prohibited_script = script_helper.make_script(prohibited_path, "test_prohibited", "a = 0")
485 self.initfn = script_helper.make_script(self.pkgdir, '__init__', '')
486 self.barfn = script_helper.make_script(self.pkgdir, 'bar', '')
491 bazfn = script_helper.make_script(self.directory, 'baz', '')
500 bazfn = script_helper.make_script(self.directory, 'baz', '')
517 script_helper.make_script(self.directory, 'baz', '')
585 subinitfn = script_helper.make_script(subpackage, '__init__', '')
586 hamfn = script_helper.make_script(subpackage, 'ham', '')
602 hamfn = script_helper.make_script(subpackage, 'ham', '')
603 spamfn = script_helper.make_script(subpackage2, 'spam', '')
604 eggfn = script_helper.make_script(subpackage3, 'egg', '')
649 script_helper.make_script(self.pkgdir, 'crunchyfrog', 'bad(syntax')
663 init2fn = script_helper.make_script(pkgdir2, '__init__', '')
664 bar2fn = script_helper.make_script(pkgdir2, 'bar2', '')
672 script_helper.make_script(self.pkgdir, 'crunchyfrog', 'bad(syntax')
677 bazfn = script_helper.make_script(self.pkgdir, 'baz', 'raise Exception')
679 fn = script_helper.make_script(self.pkgdir, 'bing', 'import baz')
695 f1 = script_helper.make_script(self.pkgdir, 'f1', '')
696 f2 = script_helper.make_script(self.pkgdir, 'f2', '')
697 f3 = script_helper.make_script(self.pkgdir, 'f3', '')
698 f4 = script_helper.make_script(self.pkgdir, 'f4', '')
709 f1 = script_helper.make_script(self.pkgdir, 'f1', '')
710 f2 = script_helper.make_script(self.pkgdir, 'f2', '')
711 f3 = script_helper.make_script(self.pkgdir, 'f3', '')
712 f4 = script_helper.make_script(self.pkgdir, 'f4', '')
722 f1 = script_helper.make_script(self.pkgdir, 'f1', '')
723 f2 = script_helper.make_script(self.pkgdir, 'f2', '')
724 f3 = script_helper.make_script(self.pkgdir, 'f3', '')
725 f4 = script_helper.make_script(self.pkgdir, 'f4', '')
735 bingfn = script_helper.make_script(self.pkgdir, 'bing', 'syntax(error')
748 script_helper.make_script(self.pkgdir, 'f1', '')
762 bar2fn = script_helper.make_script(self.directory, 'bar2', '')
767 fn = script_helper.make_script(pkgdir, '__init__', '')
768 files.append(script_helper.make_script(pkgdir, 'bar2', ''))
787 script = script_helper.make_script(path, "test", "1 / 0")
806 script = script_helper.make_script(path,
837 allowed_script = script_helper.make_script(allowed_path, "test_allowed", "a = 0")
838 prohibited_script = script_helper.make_script(prohibited_path, "test_prohibited", "a = 0")
865 script = script_helper.make_script(path, "script", "a = 0")
906 def make_script(self, code, name="script"): member in HardlinkDedupTestsBase
907 return script_helper.make_script(self.path, name, code)
917 self.make_script("pass")
947 script = self.make_script(code)
968 script = self.make_script(code)
979 script = self.make_script(self.create_code())
991 script = self.make_script(self.create_code())
1001 script = self.make_script("a = 0")
1010 script = self.make_script("print(0)")
1026 script = self.make_script(self.create_code(), name="module")
1035 script = self.make_script("print(0)", name="module")