vote up 1 vote down star

Is there a way to test compile-time errors, but without actually generating the error? For example, if I create a class which is non-copyable, I'd like to test the fact that trying to copy it will generate a compiler error, but I'd still like to execute the other runtime tests.

struct Foo {
    int value_;
    Foo(int value) : value_(value) {}
  private:
    Foo(const Foo&);
    const Foo& operator=(const Foo&);
};

int main()
{
    Foo f(12);
    assert(f.value_ == 12);
    assert(IS_COMPILER_ERROR(Foo copy(f);));
} // Would like this to compile and run fine.

I guess this can't be done as simply as that, but is there an idiomatic way to do this, or should I roll my own solution (maybe using scripts compiling separate tests files and testing the results?)?

N.B.: I took non-copyable only to illustrate my point, so I'm not interested in answers about using boost::noncopyable and such.

flag

I'm guessing static_assert is out of scope too :P (boost.org/doc/libs/…) – dirkgently Mar 3 at 10:54
static_assert won't work. He wants to be able to assert that static_assert actually does cause a compile error. (or that anything else that supposedly triggers a compile error actually does that) – jalf Mar 3 at 11:23
just posted a stupid idea that might help you make a framework of sorts... – Robert Gould Mar 3 at 11:28

4 Answers

vote up 5 vote down check

You can do it using make. Each test will be a code snippet. Here's a working example with 2 tests for VC++. (I've used 2 batch files for pass test and fail test). I'm using GNU make here.

Makefile:


FAILTEST = .\failtest.bat
PASSTEST = .\passtest.bat

tests: must_fail_but_passes \
    must_pass_but_fails

must_fail_but_passes:
    @$(FAILTEST) $@.cpp

must_pass_but_fails:
    @$(PASSTEST) $@.cpp

must_pass_but_fails.cpp


struct Foo {
    int value_;
    Foo(void) : value_(0) {}
  private:
    Foo(const Foo&);
    const Foo& operator=(const Foo&);
};

int main() { Foo f(12); return 0; }

must_fail_but_passes.cpp


struct Foo {
    int value_;
    Foo(int value) : value_(value) {}
  private:
    Foo(const Foo&);
    const Foo& operator=(const Foo&);
};

int main() { Foo f(12); return 0; }

passtest.bat


@echo off
cl /nologo %1 >NUL
if %errorlevel% == 0 goto pass
@echo %1 FAILED
:pass

failtest.bat


@echo off
cl /nologo %1 >NUL
if not %errorlevel% == 0 goto pass
@echo %1 FAILED
:pass

Note that cl.exe (i.e. Visual Studio compiler) need to be in your path for this to "just work"

Have fun!

P.S. I doubt that this would make me famous though :-)

link|flag
This editor is chopping half the Makefile and I don't know why. It should have 2 other lines: test2: must_pass_but_fails.cpp @$(PASSTEST) $ – Dushara Mar 4 at 1:09
vote up 1 vote down

Unfortunately there is no easy way to test a compile error in the way you want to, I've also wanted to do this before.

Anyways if your tests are small enough you can write short uncompilable code, like your sample, and verify with a script if the errors generated are correct or not (again you just said it).

An example of this sort of thing would be Unix's configure scripts, in more than a few scripts I've seen them try to compile little samples to verify the version/abilities of the compiler, to configure the makefile correctly.

So at least you can know you're not alone. Now if you wrote a successful test framework for this sort of thing you'd probably become famous :)

Edit: You could possibly also use a #define that either tries or not compile uncompilable code something like this:

#ifdef _COMPILETEST
#define TRY_COMPILE(...) (__VA_ARG__)
#else
#define TRY_COMPILE(...)
#end

Note that this is something I just though about and there are probably many problems with this pattern, but it might serve as a seed for some better ideas.

link|flag
Well, that's what I feared...at least I have a new project to work on in my (scarce) spare time :p! – Luc Touraille Mar 3 at 11:05
Yeah its unfortunate. But remember you could become famous ;) – Robert Gould Mar 3 at 11:13
For the moment, I use something a little similar to your edit: I have a cpp file that either includes test_compile.h or test_runtime.cpp, depending on a compiler constant. – Luc Touraille Mar 3 at 13:04
vote up 0 vote down

Feel free to write a test framework that can do it. A lot of C++ programmers would appreciate it. :)

link|flag
vote up 0 vote down

boost.type_traits seems to have what you are looking for.

link|flag
Even though the Boost Type Traits library provides several very convenient features, it cannot really solve the problem exposed here (not to mention more complex cases). – Luc Touraille Mar 4 at 11:09
For example, I would expect boost::is_convertible<Foo, Foo>::value to be false (since Foo is not copyable), but I get a compiler error, so the problem is still there. – Luc Touraille Mar 4 at 11:12
I was thinking to has_nothrow_copy, however, it seems to work only with recent versions of VC++. – Luc Hermitte Mar 4 at 16:06
Well, has_nothrow_copy<Foo> is indeed false, but only because Foo copy constructor doesn't have an empty exception specification, not because it is private. So I agree boost::type_traits can be useful, but not to adress the kind of issues evoked in the question. – Luc Touraille Mar 5 at 9:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.