Add a test for llvm-ar's 'd' operation.
[oota-llvm.git] / unittests / Option / OptionParsingTest.cpp
index c90691ad15368a5e7fccbaa83c4d1914707fce6b..30944d9be797657700208e623982666f6853fdda 100644 (file)
@@ -7,6 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 
+#include "llvm/ADT/OwningPtr.h"
 #include "llvm/Option/Arg.h"
 #include "llvm/Option/ArgList.h"
 #include "llvm/Option/Option.h"
@@ -60,7 +61,11 @@ const char *Args[] = {
 TEST(Support, OptionParsing) {
   TestOptTable T;
   unsigned MAI, MAC;
-  InputArgList *AL = T.ParseArgs(Args, Args + (sizeof(Args) / sizeof(Args[0])), MAI, MAC);
+  OwningPtr<InputArgList>
+    AL(T.ParseArgs(Args,
+                   Args + (sizeof(Args) / sizeof(Args[0])),
+                   MAI,
+                   MAC));
 
   // Check they all exist.
   EXPECT_TRUE(AL->hasArg(OPT_A));