Add a test activity to add entries to the call log.

This activity can be used to add entries to the call log.

It uses existing entries to generate new data. It only changes the
actual date of the call.

Change-Id: I3dc935982a5994ffa07ee22390b1d45af12a2aac
diff --git a/tests/AndroidManifest.xml b/tests/AndroidManifest.xml
index e714c25..1b8df6b 100644
--- a/tests/AndroidManifest.xml
+++ b/tests/AndroidManifest.xml
@@ -18,6 +18,7 @@
     package="com.android.contacts.tests">
 
     <uses-permission android:name="android.permission.READ_CONTACTS" />
+    <uses-permission android:name="android.permission.WRITE_CONTACTS" />
     <uses-permission android:name="android.permission.GET_ACCOUNTS" />
 
     <application>
@@ -62,6 +63,16 @@
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
         </activity>
+
+        <activity android:name=".calllog.FillCallLogTestActivity"
+            android:label="@string/fillCallLogTest"
+            >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.DEFAULT" />
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
     </application>
 
     <instrumentation android:name="android.test.InstrumentationTestRunner"