diff options
Diffstat (limited to 'src/libs/xpcom18a4/xpcom/tests/TestStackCrawl.cpp')
-rw-r--r-- | src/libs/xpcom18a4/xpcom/tests/TestStackCrawl.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libs/xpcom18a4/xpcom/tests/TestStackCrawl.cpp b/src/libs/xpcom18a4/xpcom/tests/TestStackCrawl.cpp new file mode 100644 index 00000000..76187edd --- /dev/null +++ b/src/libs/xpcom18a4/xpcom/tests/TestStackCrawl.cpp @@ -0,0 +1,11 @@ +#include <stdio.h> + +#include "nsISupportsUtils.h" +#include "nsTraceRefCntImpl.h" + +int main(int argc, char* argv[]) +{ + nsTraceRefcntImpl::WalkTheStack(stdout); + return 0; +} + |