2019-05-22 07:17:31 +08:00
|
|
|
#define SOL_ALL_SAFETIES_ON 1
|
2018-09-28 13:27:38 +08:00
|
|
|
#include <sol/sol.hpp>
|
2018-03-16 05:16:28 +08:00
|
|
|
|
|
|
|
#include "assert.hpp"
|
|
|
|
|
2019-05-22 07:17:31 +08:00
|
|
|
int main(int, char*[]) {
|
|
|
|
|
2018-03-16 05:16:28 +08:00
|
|
|
struct protect_me {
|
|
|
|
int gen(int x) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
lua.new_usertype<protect_me>("protect_me",
|
|
|
|
"gen", sol::protect( &protect_me::gen )
|
|
|
|
);
|
|
|
|
|
|
|
|
lua.script(R"__(
|
|
|
|
pm = protect_me.new()
|
|
|
|
value = pcall(pm.gen,"wrong argument")
|
|
|
|
)__");
|
|
|
|
bool value = lua["value"];
|
|
|
|
c_assert(!value);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|