This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/tests/libntp/decodenetnum.c b/tests/libntp/decodenetnum.c | |
index a681e4f73..0f1257241 100644 | |
--- a/tests/libntp/decodenetnum.c | |
+++ b/tests/libntp/decodenetnum.c | |
@@ -17,6 +17,7 @@ TEST_TEAR_DOWN(decodenetnum) {} | |
TEST(decodenetnum, Services) { | |
+ TEST_IGNORE_MESSAGE("/etc/services doesn't exist in the build sandbox, resolving for \"ntp\" will fail"); | |
struct addrinfo *res; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getpdf() { | |
let jspdf = document.createElement("script"); | |
jspdf.onload = function () { | |
let pdf = new jsPDF(); | |
let elements = document.getElementsByTagName("img"); | |
for (let i in elements) { | |
let img = elements[i]; | |
if(!img.src.startsWith("blob:")) continue; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef debug_macro | |
#define debug_macro | |
#if __cplusplus < 201402L | |
#error "debug header requires C++14 and above" | |
#endif | |
#include <iosfwd> | |
#include <utility> | |
#include <type_traits> |