From: Alexis Laferrière Date: Sat, 19 Oct 2013 15:11:26 +0000 (-0400) Subject: tests: adds tests for the annotations "c_?_options" X-Git-Tag: v0.6.4~15^2~14 X-Git-Url: http://nitlanguage.org tests: adds tests for the annotations "c_?_options" Signed-off-by: Alexis Laferrière --- diff --git a/tests/error_annot_c_compiler.nit b/tests/error_annot_c_compiler.nit new file mode 100644 index 0000000..69e3f0d --- /dev/null +++ b/tests/error_annot_c_compiler.nit @@ -0,0 +1,26 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +#alt1# module error_annot_c_compiler_alt1 is c_compiler_option +#alt2# module error_annot_c_compiler_alt2 is c_compiler_option(foo("llvm-config")) +#alt3# module error_annot_c_compiler_alt3 is c_compiler_option(foo("llvm-config", "2nd arg")) +#alt4# module error_annot_c_compiler_alt4 is c_linker_option +#alt5# module error_annot_c_compiler_alt5 is c_compiler_option(exec("invalid-program")) +#alt6# module error_annot_c_compiler_alt6 is c_compiler_option(exec) + +fun foo `{ printf("nothing...\n"); `} + +foo diff --git a/tests/sav/error_annot_c_compiler.res b/tests/sav/error_annot_c_compiler.res new file mode 100644 index 0000000..41ccf19 --- /dev/null +++ b/tests/sav/error_annot_c_compiler.res @@ -0,0 +1 @@ +nothing... diff --git a/tests/sav/error_annot_c_compiler_alt1.res b/tests/sav/error_annot_c_compiler_alt1.res new file mode 100644 index 0000000..981a90b --- /dev/null +++ b/tests/sav/error_annot_c_compiler_alt1.res @@ -0,0 +1 @@ +alt/error_annot_c_compiler_alt1.nit:17,39--55: Syntax error: "c_compiler_option" expects at least one argument. diff --git a/tests/sav/error_annot_c_compiler_alt2.res b/tests/sav/error_annot_c_compiler_alt2.res new file mode 100644 index 0000000..b460682 --- /dev/null +++ b/tests/sav/error_annot_c_compiler_alt2.res @@ -0,0 +1 @@ +alt/error_annot_c_compiler_alt2.nit:18,39--75: Syntax error: "c_compiler_option" accepts only calls to `exec` with the command as arguments. diff --git a/tests/sav/error_annot_c_compiler_alt3.res b/tests/sav/error_annot_c_compiler_alt3.res new file mode 100644 index 0000000..8142bf8 --- /dev/null +++ b/tests/sav/error_annot_c_compiler_alt3.res @@ -0,0 +1 @@ +alt/error_annot_c_compiler_alt3.nit:19,39--86: Syntax error: "c_compiler_option" accepts only calls to `exec` with the command as arguments. diff --git a/tests/sav/error_annot_c_compiler_alt4.res b/tests/sav/error_annot_c_compiler_alt4.res new file mode 100644 index 0000000..d753ea9 --- /dev/null +++ b/tests/sav/error_annot_c_compiler_alt4.res @@ -0,0 +1 @@ +alt/error_annot_c_compiler_alt4.nit:20,39--53: Syntax error: "c_linker_option" expects at least one argument. diff --git a/tests/sav/error_annot_c_compiler_alt5.res b/tests/sav/error_annot_c_compiler_alt5.res new file mode 100644 index 0000000..2251e01 --- /dev/null +++ b/tests/sav/error_annot_c_compiler_alt5.res @@ -0,0 +1 @@ +alt/error_annot_c_compiler_alt5.nit:21,57--79: Annotation error: Something went wrong executing the argument of annotation "c_compiler_option", make sure the command is valid. diff --git a/tests/sav/error_annot_c_compiler_alt6.res b/tests/sav/error_annot_c_compiler_alt6.res new file mode 100644 index 0000000..694b887 --- /dev/null +++ b/tests/sav/error_annot_c_compiler_alt6.res @@ -0,0 +1 @@ +alt/error_annot_c_compiler_alt6.nit:22,39--61: Syntax error: "c_compiler_option" accepts only calls to `exec` with the command as arguments. diff --git a/tests/sav/test_annot_c_compiler.res b/tests/sav/test_annot_c_compiler.res new file mode 100644 index 0000000..41ccf19 --- /dev/null +++ b/tests/sav/test_annot_c_compiler.res @@ -0,0 +1 @@ +nothing... diff --git a/tests/test_annot_c_compiler.nit b/tests/test_annot_c_compiler.nit new file mode 100644 index 0000000..e55ae8a --- /dev/null +++ b/tests/test_annot_c_compiler.nit @@ -0,0 +1,26 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +module test_annot_c_compiler is + c_compiler_option("-I /usr/include") + c_compiler_option(exec("pkg-config", "--cflags", "sdl")) + c_linker_option("-lm") + c_linker_option("-lm", "-L /usr/bin") +end + +fun dummy `{ printf("nothing...\n"); `} + +dummy