go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/lucicfg/testdata/misc/can_exec.star (about) 1 exec("//testdata/misc/support/execed.star") 2 3 lucicfg.emit( 4 dest = "from-top", 5 data = str(lucicfg.current_module()) + "\n", 6 ) 7 8 # Expect configs: 9 # 10 # === from-exec 11 # struct(package = "__main__", path = "testdata/misc/support/execed.star") 12 # === 13 # 14 # === from-top 15 # struct(package = "__main__", path = "testdata/misc/can_exec.star") 16 # === 17 # 18 # === project.cfg 19 # name: "test" 20 # === 21 # 22 # === realms.cfg 23 # realms { 24 # name: "@root" 25 # } 26 # ===