blob: 12e2c4caeb54760f8f6504520772c6a774b36429 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdio.h>
#include <lib/backtrace-request/backtrace-request.h>
// This trivial test exists in order to prove that backtrace_request
// works: that it reports a backtrace, as an integration test.
int main() {
backtrace_request();
// The purpose of this line is to see whether the inferior was resumed.
printf("Continuing after backtrace request.\n");
}