https://github.com/shader-slang/slang
Raw File
Tip revision: e45f8c1f49855cebe90b6722324ec24146ff5a3d authored by Tim Foley on 22 April 2020, 18:09:09 UTC
Disable OptiX tests by default. (#1331)
Tip revision: e45f8c1
import-subdir-search-path-repro.slang
//DISABLE_TEST:SIMPLE: -Itests/front-end/subdir -dump-repro import-subdir-search-path-repro.slang-repro
//DISABLE_TEST:SIMPLE_EX: -extract-repro import-subdir-search-path-repro.slang-repro
//DISABLE_TEST:SIMPLE: -load-repro import-subdir-search-path-repro.slang-repro

// Confirming import lookup via search paths work

__import import_subdir_a;

// Should realize it's the same thing
__import subdir.import_subdir_a;

float bar(float x) { return foo(x); }
back to top