diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-02-11 20:32:24 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-02-11 20:43:32 -0500 |
commit | cf4f6e6da179114b3d7cfc564889401485b57fdf (patch) | |
tree | 9fb122a0631fd2285cc0f72b91a0e4314d8a1abe /tests/dimension/directives.pov | |
parent | a2b5336d126a95b58527151584c249876d50f0e8 (diff) | |
download | dimension-cf4f6e6da179114b3d7cfc564889401485b57fdf.tar.xz |
Support stream directives.
Diffstat (limited to 'tests/dimension/directives.pov')
-rw-r--r-- | tests/dimension/directives.pov | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/dimension/directives.pov b/tests/dimension/directives.pov index 75c8a81..5137cd2 100644 --- a/tests/dimension/directives.pov +++ b/tests/dimension/directives.pov @@ -21,6 +21,9 @@ #version 3.6; +#debug "debug" +#warning "warning" + #include "directives.inc" #declare R = 1; @@ -30,17 +33,17 @@ #undef Unused #ifdef (Local) - Illegal + #error "Local escaped from include file" #end #ifdef (Unused) - Illegal + #error "#undef failed" #end #declare Counter = 0; #while (Counter < 2) #if (#if (1 = 1) 0 #end = 0 & 0) - `Illegal + #error "Nested #if parsing failed" #else sphere { Center + <0, Counter, 0>, R |