I have a Perl script that takes user input and creates another script that will be run at a later date. I'm currently going through and writing tests for these scripts and one of the tests that I would like to perform is checking if the generated script compiles successfully (e.g. perl -c <script>.) Is there a way that I can have Perl perform a compile on the generated script without having to spawn another Perl process? I've tried searching for answers, but searches just turn up information about compiling Perl scripts into executable programs.
|
|
|||||||||||
|
|
To execute dynamically generated code, use
However if you want to just compile or check syntax, then you will not be able to do it within same Perl session. Function Only work-around that may work for you would be:
In this case, you will be able to check for compilation error(s) using Note: Thanks to user mob for helpfull chat and code correction. |
|||||||||||||
|
|
Compiling a script has a lot of side-effects. It results in subs being defined. It results in modules being executed. etc. If you simply want to test whether something compiles, you want a separate interpreter. It's the only way to be sure that one testing one script doesn't cause later tests to give false positives or false negatives. |
||||
|
|
|
Won't something like this work for you ?
|
|||||
|
|
See |
|||
|
|