Welcome to mirror list, hosted at ThFree Co, Russian Federation.

22_exception.t « t « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7df42670a13a5a40377c4a2ff4c5ed1c2f2b7c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/perl

use strict;
use warnings;

use Slic3r::XS;
use Test::More tests => 1;

if ($ENV{SLIC3R_HAS_BROKEN_CROAK}) 
{
    ok 1, 'SLIC3R_HAS_BROKEN_CROAK set, croaks and confesses from a C++ code will lead to an application exit!';
}
else
{
    eval {
        Slic3r::xspp_test_croak_hangs_on_strawberry();
    };
    is $@, "xspp_test_croak_hangs_on_strawberry: exception catched\n", 'croak from inside a C++ exception delivered';
}

__END__