param.ccl parser writes (debug?) files v1 and v2 into Cactus root

Issue #2026 closed
Roland Haas created an issue

The file parametre_parser.pl contains

    open($fd,">v1") or die;
    print $fd $v1,"\n";
    close($fd);
    open($fd,">v2") or die;
    print $fd $v2,"\n";
    close($fd);

causing it to create files v1 and v2 in the main Cactus root.

Without having looked into this in any more details, this smells like debug output that should be removed before the release.

Keyword:

Comments (2)

  1. Log in to comment