Move MiInterpreterExecTestCase to test/tools/lldb-mi/interpreter folder (MI)

llvm-svn: 231918
This commit is contained in:
Ilia K 2015-03-11 12:28:48 +00:00
parent 654e1c2c1a
commit 555ed1342d
3 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,5 @@
LEVEL = ../../../make
CXX_SOURCES := main.cpp
include $(LEVEL)/Makefile.rules

View File

@ -2,6 +2,10 @@
Test lldb-mi -interpreter-exec command.
"""
# adjust path for lldbmi_testcase.py
import sys, os.path
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
import lldbmi_testcase
from lldbtest import *
import unittest2

View File

@ -0,0 +1,17 @@
//===-- main.cpp ------------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <cstdio>
int
main(int argc, char const *argv[])
{
printf("argc=%d\n", argc);
return 0;
}